French translation
[odoo/odoo.git] / addons / mrp_operations / __terp__.py
1 # -*- encoding: utf-8 -*-
2 {
3     "name" : "Workcenter Production start end workflow",
4     "version" : "1.0",
5     "author" : "Tiny",
6     "website" : "http://tinyerp.com/module_mrp.html",
7     "category" : "Generic Modules/Production",
8     "depends" : ["stock", "hr", "purchase", "product", "mrp"],
9     "description": """
10      This module adds state, date_start,date_stop in production order operation lines
11      (in the "Workcenters" tab)
12      State: draft, confirm, done, cancel
13      When finnishing/confirming,cancelling production orders set all state lines to the according state
14      Create menus:
15          Production Management > All Operations
16          Production Management > All Operations > Operations To Do (state="confirm")
17      Which is a view on "Workcenters" lines in production order,
18      editable tree
19
20     Add buttons in the form view of production order under workcenter tab:
21     * start (set state to confirm), set date_start
22     * done (set state to done), set date_stop
23     * set to draft (set state to draft)
24     * cancel set state to cancel
25
26     When the production order becomes "ready to produce", operations must
27     become 'confirmed'. When the production order is done, all operations
28     must become done.
29
30     The field delay is the delay(stop date - start date).
31     So that we can compare the theoric delay and real delay.
32
33     """,
34     "init_xml" : [],
35     "demo_xml" : ["mrp_operation_data.xml"],
36     "update_xml" : [
37         "security/ir.model.access.csv",
38         "mrp_operations_workflow.xml","mrp_operations_view.xml","mrp_operations_report.xml"
39     ],
40     "active": False,
41     "installable": True
42 }
43 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
44