-
Notifications
You must be signed in to change notification settings - Fork 13
/
__manifest__.py
49 lines (49 loc) · 1.36 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
# -*- coding: utf-8 -*-
{
"name": """Boleta / Factura Electrónica Chilena para punto de ventas \
""",
'version': '0.7.12',
'category': 'Point of Sale/Localization/Chile',
'sequence': 12,
'author': 'Daniel Santibáñez Polanco, Cooperativa OdooCoop',
'website': 'https://globalresponse.cl',
'license': 'AGPL-3',
'summary': '',
'description': """
Chile: API and GUI to access Electronic Invoicing webservices for Point of Sale.
""",
'depends': [
'l10n_cl_fe',
'account',
'point_of_sale',
'portal',
],
'external_dependencies': {
'python': [
]
},
'data': [
'data/report_paperformat.xml',
'report/report_pos_common_templates.xml',
'report/report_pos_boleta.xml',
'wizard/notas.xml',
'views/pos_dte.xml',
'views/pos_config.xml',
'views/pos_session.xml',
'views/point_of_sale.xml',
'views/bo_receipt.xml',
'views/portal_boleta_layout.xml',
'views/sii_xml_envio.xml',
'wizard/masive_send_dte.xml',
# 'data/sequence.xml',
'security/ir.model.access.csv',
],
'qweb': [
'static/src/xml/layout.xml',
'static/src/xml/client.xml',
'static/src/xml/payment.xml',
],
'installable': True,
'auto_install': False,
'application': True,
}