-
-
Notifications
You must be signed in to change notification settings - Fork 585
/
Copy path__manifest__.py
40 lines (36 loc) · 1 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
# -*- coding: utf-8 -*-
{
"name": """POS Advanced Order Notes""",
"summary": """Set predefined notes for separate product or entire order""",
"category": "Point of Sale",
# "live_test_url": "",
"images": ["images/pos_order_note_main.png"],
"version": "10.0.1.2.2",
"application": False,
"author": "IT-Projects LLC, Dinar Gabbasov",
"support": "pos@it-projects.info",
"website": "https://it-projects.info/team/GabbasovDinar",
"license": "LGPL-3",
"price": 34.00,
"currency": "EUR",
"depends": [
"pos_restaurant_base",
],
"external_dependencies": {"python": [], "bin": []},
"data": [
"security/ir.model.access.csv",
"views/views.xml",
"views/template.xml",
],
"qweb": [
"static/src/xml/order_note.xml",
],
"demo": [
"data/pos_product_notes_demo.xml",
],
"post_load": None,
"pre_init_hook": None,
"post_init_hook": None,
"auto_install": False,
"installable": True,
}