-
-
Notifications
You must be signed in to change notification settings - Fork 583
/
__manifest__.py
38 lines (38 loc) · 1.44 KB
/
__manifest__.py
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
31
32
33
34
35
36
37
38
# Copyright 2018 Artyom Losev
# Copyright 2018 Dinar Gabbasov <https://it-projects.info/team/GabbasovDinar>
# Copyright 2021 Ilya Ilchenko <https://github.com/mentalko>
# License MIT (https://opensource.org/licenses/MIT).
{
"name": """POS: Pay SO & Invoices""",
"summary": """Handle the payment process for Sale Orders/Invoices over Point of Sale""",
"category": "Point of Sale",
"images": ["images/pos_invoice_pay_main.png"],
"version": "13.0.1.2.6",
"application": False,
"author": "IT-Projects LLC, Artyom Losev",
"support": "[email protected]",
"website": "https://apps.odoo.com/apps/modules/13.0/pos_invoice_pay/",
"license": "Other OSI approved licence", # MIT
"currency": "EUR",
"depends": ["base_automation", "sale_management", "pos_longpolling"],
"external_dependencies": {"python": [], "bin": []},
"data": [
"data.xml",
"actions/base_action_rules.xml",
"report/report.xml",
"view.xml",
],
"qweb": ["static/src/xml/pos.xml"],
"demo": [],
"post_load": None,
"pre_init_hook": None,
"post_init_hook": None,
"auto_install": False,
"installable": True,
"demo_title": "Pay Sale Orders & Invoices over POS",
"demo_addons": [],
"demo_addons_hidden": [],
"demo_url": "pos-invoice-pay",
"demo_summary": "Handle the payment process for Sale Orders/Invoices over Point of Sale",
"demo_images": ["images/pos_invoice_pay_main.png"],
}