forked from matteopolleschi/odoo_imppn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path__openerp__.py
35 lines (30 loc) · 1015 Bytes
/
__openerp__.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
# -*- coding: utf-8 -*
#
# Copyright 2018 Matteo Polleschi <[email protected]>
# Copyright 2018 Antonio M. Vigliotti <[email protected]>
# Copyright 2018 Odoo Italia Associazione <https://odoo-italia.org/>
#
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
#-
{
'name': "Odoo imppn",
'summary': "Financial and Analytic Accounting",
'description': "Module build to export invoices (active and passive) to an accounting system format (python library)",
'author': "Jothimani R",
'website': "http://www.github.com/matteopolleschi/odoo_imppn",
'category': 'Accounting & Finance',
'version': '0.1',
'depends': ['web',
'base',
'account_accountant',
'account_invoice_entry_date'],
'data': [
'views/res_company_view.xml',
'wizard/account_invoice_export_imppn_views.xml'
],
'external_dependencies': {
'python': [
'fixedwidth',
],
},
}