-
-
Notifications
You must be signed in to change notification settings - Fork 584
/
Copy path__manifest__.py
27 lines (27 loc) · 949 Bytes
/
__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
{
"name": """POS Network Printer""",
"summary": """The time has come. Print POS orders and receipts by using network printers""",
"category": "Point of Sale",
"images": ["images/pos_printer_network_main.png"],
"version": "12.0.2.1.1",
"application": False,
"author": "IT-Projects LLC, Dinar Gabbasov",
"support": "apps@itpp.dev",
"website": "https://apps.odoo.com/apps/modules/12.0/pos_printer_network/",
"license": "Other OSI approved licence", # MIT
"price": 340.00,
"currency": "EUR",
"depends": ["pos_restaurant"],
"external_dependencies": {"python": [], "bin": []},
"data": [
"views/pos_printer_network_template.xml",
"views/pos_printer_network_view.xml",
],
"qweb": ["static/src/xml/pos_printer_network.xml"],
"demo": [],
"post_load": None,
"pre_init_hook": None,
"post_init_hook": None,
"auto_install": False,
"installable": True,
}