forked from OCA/purchase-workflow
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path__manifest__.py
27 lines (26 loc) · 1015 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
24
25
26
27
# 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': 'Purchase Order Line Sequence',
'summary': 'Adds sequence to PO lines and propagates it to'
'Invoice lines and Stock Moves',
'version': '12.0.1.0.1',
'category': 'Purchase Management',
'author': "Camptocamp, "
"Eficent, "
"Serpent CS, "
"Odoo Community Association (OCA)",
'website': 'https://github.com/OCA/purchase-workflow',
'depends': [
'purchase_stock', 'stock_picking_line_sequence',
],
'data': ['views/purchase_view.xml',
'views/report_purchaseorder.xml',
'views/report_purchasequotation.xml'],
'post_init_hook': 'post_init_hook',
'installable': True,
'auto_install': False,
'license': "AGPL-3",
}