-
-
Notifications
You must be signed in to change notification settings - Fork 585
/
Copy path__manifest__.py
42 lines (38 loc) · 1.09 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
39
40
41
42
# -*- coding: utf-8 -*-
{
"name": """Saving removed products of POS order""",
"summary": """Store all cases of product removing and allow to specify reasons for it""",
"category": "Point of Sale",
"images": ["images/pos_order_cancel.png"],
"version": "10.0.1.2.2",
"application": False,
"author": "IT-Projects LLC, Dinar Gabbasov",
"support": "apps@it-projects.info",
"website": "https://twitter.com/gabbasov_dinar",
"license": "LGPL-3",
"price": 200.00,
"currency": "EUR",
"depends": [
"point_of_sale",
],
"external_dependencies": {"python": [], "bin": []},
"data": [
"security/security.xml",
"security/ir.model.access.csv",
"views/template.xml",
"views/views.xml",
"views/pos_config_view.xml",
],
'qweb': [
'static/src/xml/cancel_order.xml',
],
"demo": [
'data/pos_cancelled_reason_demo.xml',
'views/assets_demo.xml',
],
"post_load": None,
"pre_init_hook": None,
"post_init_hook": None,
"auto_install": False,
"installable": True,
}