-
-
Notifications
You must be signed in to change notification settings - Fork 306
/
__manifest__.py
64 lines (63 loc) · 2.76 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# Leonardo Donelli - Creativi Quadrati
# © 2016 Alessio Gerace - Agile Business Group
# © 2018-2020 Lorenzo Battistini
# © 2019-2020 Roberto Fichera - Level Prime Srl
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
{
"name": "ITA - Driver per stampanti fiscali compatibili ePOS-Print XML",
"version": "16.0.1.0.0",
"category": "Point Of Sale",
"summary": "ePOS-Print XML Fiscal Printer Driver - Stampanti Epson compatibili: "
"FP81II, FP90III",
"author": (
"Odoo Community Association (OCA), Agile Business Group, "
"Leonardo Donelli, TAKOBI, Level Prime Srl"
),
"license": "AGPL-3",
"website": "https://github.com/OCA/l10n-italy",
"maintainers": ["eLBati"],
"depends": [
"point_of_sale",
"hr",
"pos_hr",
# TODO is this necessary?
# 'pos_order_mgmt'
],
"data": [
"views/account.xml",
"views/point_of_sale.xml",
"views/employee_view.xml",
],
"assets": {
"point_of_sale.assets": [
"fiscal_epos_print/static/lib/pikaday/pikaday.min.css",
"fiscal_epos_print/static/src/css/pos.css",
"fiscal_epos_print/static/lib/fiscalprint/fiscalprint.js",
"fiscal_epos_print/static/lib/pikaday/pikaday.min.js",
"fiscal_epos_print/static/src/js/epson_epos_print.js",
"fiscal_epos_print/static/src/js/models.js",
# ChromeWidgets
"fiscal_epos_print/static/src/js/ChromeWidgets/EpsonEPOSButton.js",
"fiscal_epos_print/static/src/js/ChromeWidgets/EpsonFP81IIComponent.js",
"fiscal_epos_print/static/src/js/ChromeWidgets/SetLotteryCodeButton.js",
"fiscal_epos_print/static/src/js/ChromeWidgets/SetRefundInfoButton.js",
# Popups
"fiscal_epos_print/static/src/js/Popups/LotteryCodePopup.js",
"fiscal_epos_print/static/src/js/Popups/RefundInfoPopup.js",
# Screens
"fiscal_epos_print/static/src/js/Screens/PaymentScreen/PaymentScreen.js",
"fiscal_epos_print/static/src/js/Screens/ReceiptScreen/ReceiptScreen.js",
# Popups
"fiscal_epos_print/static/src/xml/Popups/LotteryCodePopup.xml",
"fiscal_epos_print/static/src/xml/Popups/RefundInfoPopup.xml",
# Others
"fiscal_epos_print/static/src/xml/Chrome.xml",
"fiscal_epos_print/static/src/xml/ChromeWidgets/EpsonEPOSButton.xml",
"fiscal_epos_print/static/src/xml/ChromeWidgets/EpsonFP81IIComponent.xml",
"fiscal_epos_print/static/src/xml/ChromeWidgets/SetLotteryCodeButton.xml",
"fiscal_epos_print/static/src/xml/ChromeWidgets/SetRefundInfoButton.xml",
],
},
"installable": True,
"auto_install": False,
}