-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path__manifest__.py
More file actions
30 lines (29 loc) · 985 Bytes
/
__manifest__.py
File metadata and controls
30 lines (29 loc) · 985 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# Copyright 2016-2018 Sylvain LE GAL (https://twitter.com/legalsylvain)
# Copyright 2018 David Vidal <david.vidal@tecnativa.com>
# Copyright 2018 Lambda IS DOOEL <https://www.lambda-is.com>
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
{
"name": "Point of Sale Payment Credit",
"version": "18.0.1.0.0",
"category": "Point Of Sale",
"author": "Trobz, Odoo Community Association (OCA)",
"website": "https://github.com/OCA/pos",
"license": "AGPL-3",
"depends": [
"point_of_sale",
],
"data": [
"data/payment_method_data.xml",
"views/payment_method_view.xml",
"views/res_partner_view.xml",
"views/res_config_settings_view.xml",
"wizard/pos_make_payment_view.xml",
],
"assets": {
"point_of_sale._assets_pos": [
"pos_payment_credit/static/src/app/*",
"pos_payment_credit/static/src/overrides/**/*",
],
},
"installable": True,
}