-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy path__openerp__.py
33 lines (31 loc) · 967 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
# -*- coding: utf-8 -*-
{
'name': 'Colombia - Impuestos',
'category': 'Localization',
'version': '0.1',
'author': 'Luis Alfredo da Silva, Dominic Krimmer, Plastinorte S.A.S',
'license': 'AGPL-3',
'maintainer': '[email protected]',
'website': 'https://www.plastinorte.com',
'summary': 'Colombian Taxes: Invoice Module - Odoo 9.0',
'images': ['images/'],
'description': """
Colombia Impuestos:
======================
* This module calculates some Colombian taxes that have to apply
* First tax: withholding tax, which is calculated by 2,4% from the untaxed amount and calculated with the total amount
""",
'depends': [
'account',
'sale',
'purchase',
'l10n_co'
],
'data': [
'security/ir.model.access.csv',
'views/l10n_co_tax_extension.xml',
'views/report_invoice.xml',
'views/ir_sequence_view.xml'
],
'installable': True,
}