forked from OCA/account-invoicing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path__manifest__.py
23 lines (22 loc) · 862 Bytes
/
__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
# -*- coding: utf-8 -*-
# Copyright 2017 Camptocamp SA - Damien Crier, Alexandre Fayolle
# Copyright 2017 Eficent Business and IT Consulting Services S.L.
# Copyright 2017 Serpent Consulting Services Pvt. Ltd.
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
{
'name': 'Account Invoice line with sequence number',
'version': '10.0.1.0.0',
"summary": "Adds sequence field on invoice lines to manage its order.",
'category': 'Accounting',
'author': "Camptocamp, "
"Eficent, "
"Serpent CS, "
"Odoo Community Association (OCA)",
'website': 'http://www.camptocamp.com',
'data': ['views/account_invoice_view.xml',
'views/report_invoice.xml'],
'depends': ['account'],
'post_init_hook': 'post_init_hook',
'license': 'AGPL-3',
'installable': True,
}