Delta Between Two Patch Sets: __tryton__.py
Issue 4306055 :
New production module (Closed)
Left Patch Set: Fix order of import
Right Patch Set: To be sure
Use n/p to move between diff chunks;
N/P to move between comments.
Please Sign in to add in-line comments.
Jump to:
COPYRIGHT
INSTALL
LICENSE
MANIFEST.in
README
__init__.py
__tryton__.py
bom.py
bom.xml
configuration.py
configuration.xml
doc/index.rst
product.py
product.xml
production.py
production.xml
setup.py
stock.py
stock.xml
tests/__init__.py
tests/scenario_production.rst
tests/test_production.py
LEFT RIGHT
1 #This file is part of Tryton. The COPYRIGHT file at the top level of 1 #This file is part of Tryton. The COPYRIGHT file at the top level of
2 #this repository contains the full copyright notices and license terms. 2 #this repository contains the full copyright notices and license terms.
3 { 3 {
4 'name' : 'Production', 4 'name': 'Production Management ',
5 'version' : '0.0.1', 5 'version': '0.0.1',
6 'author' : 'B2CK', 6 'author': 'B2CK',
7 'email': 'info@b2ck.com', 7 'email': 'info@b2ck.com',
8 'website': 'http://www.tryton.org/', 8 'website': 'http://www.tryton.org/',
9 'description': '', 9 'description': '''Production Management with:
10 'depends' : [ 10 - Bill of Material
11 - Production Order
12 ''',
13 'depends': [
11 'ir', 14 'ir',
12 'res', 15 'res',
13 'product', 16 'product',
14 'company', 17 'company',
15 'stock', 18 'stock',
16 ], 19 ],
17 'xml' : [ 20 'xml': [
21 'production.xml',
18 'configuration.xml', 22 'configuration.xml',
19 'production.xml',
20 'bom.xml', 23 'bom.xml',
21 'product.xml', 24 'product.xml',
22 'stock.xml', 25 'stock.xml',
23 ], 26 ],
24 'translation': [ 27 'translation': [
25 ] 28 ]
26 } 29 }
27
LEFT RIGHT