-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path__manifest__.py
51 lines (50 loc) · 1.64 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
{
'name': 'Panama Electronic Invoicing - HKA Integration',
'version': '1.0.13',
'category': 'Accounting/Localizations',
'summary': 'Electronic Invoicing Integration for Panama with HKA',
'description': """
Electronic Invoicing Integration for Panama
=========================================
This module provides integration with HKA's electronic invoicing system for Panama.
""",
'author': 'Independent Solutions',
'website': 'https://www.isolpa.com',
'license': 'OPL-1',
'depends': [
'base',
'l10n_pa',
'stock',
'point_of_sale',
],
'data': [
'security/isfehka_security.xml',
'security/ir.model.access.csv',
'data/res_country_state_data.xml',
'data/res_location_pa_data.xml',
'data/isfehka_data.xml',
'wizard/account_move_cancel_reason_views.xml',
'views/res_company_views.xml',
'views/res_config_settings_views.xml',
'views/res_partner_views.xml',
'views/account_move_views.xml',
'views/pos_config_views.xml',
'views/pos_payment_method_views.xml',
'report/account_move_report.xml',
'report/account_move_templates.xml',
'views/menu_views.xml',
],
'assets': {
'point_of_sale._assets_pos': [
'isfehka/static/src/js/pos_partner_extension.js',
'isfehka/static/src/xml/pos_partner_extension.xml',
],
},
'external_dependencies': {
'python': ['zeep'],
},
#'images': ['static/description/icon.png'],
'installable': True,
'application': True,
'auto_install': False,
}