forked from OCA/stock-logistics-workflow
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path__openerp__.py
More file actions
30 lines (29 loc) · 897 Bytes
/
__openerp__.py
File metadata and controls
30 lines (29 loc) · 897 Bytes
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
# -*- coding: utf-8 -*-
# © 2012-2014 Alexandre Fayolle, Camptocamp SA
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
{
'name': 'Stock batch picking',
'version': '9.0.1.0.0',
'author': "Camptocamp, Odoo Community Association (OCA)",
'maintainer': 'Camptocamp',
'category': 'Inventory',
'complexity': "normal",
'depends': [
'delivery',
],
'website': 'http://www.camptocamp.com/',
'data': [
'data/stock_batch_picking_sequence.xml',
'views/stock_batch_picking.xml',
'views/product_product.xml',
'views/report_batch_picking.xml',
'views/stock_picking.xml',
'views/stock_warehouse.xml',
'wizard/batch_picking_creator_view.xml',
'security/ir.model.access.csv',
],
'installable': True,
'auto_install': False,
'license': 'AGPL-3',
'application': False
}