[ADD]: Help added for All work orders state field
authorVIR, UCO <>
Tue, 29 Dec 2009 12:25:25 +0000 (17:55 +0530)
committeruco (OpenERP) <uco@tinyerp.co.in>
Tue, 29 Dec 2009 12:25:25 +0000 (17:55 +0530)
bzr revid: uco@tinyerp.co.in-20091229122525-qeuu25ymgd9i3eoe

addons/mrp_operations/mrp_operations.py

index 5cd7193..d206fc0 100644 (file)
@@ -69,7 +69,12 @@ class mrp_production_workcenter_line(osv.osv):
     _inherit = 'mrp.production.workcenter.line'
     _order = "sequence, date_planned"
     _columns = {
-       'state': fields.selection([('draft','Draft'),('startworking', 'In Progress'),('pause','Pause'),('cancel','Canceled'),('done','Finished')],'State', readonly=True),
+       'state': fields.selection([('draft','Draft'),('startworking', 'In Progress'),('pause','Pause'),('cancel','Canceled'),('done','Finished')],'State', readonly=True,
+                                 help="* When a work order is created it is set in 'Draft' state.\n" \
+                                       "* When user sets work order in start mode that time it will be set in 'In Progress' state.\n" \
+                                       "* When work order is in running mode, during that time if user wants to stop or to make changes in order then can set in 'Pause' state.\n" \
+                                       "* When the user cancels the work order it will be set in 'Canceled' state.\n" \
+                                       "* When order is completely processed that time it is set in 'Finished' state."),
        'date_start_date': fields.function(_get_date_date, method=True, string='Start Date', type='date'),
        'date_planned': fields.datetime('Scheduled Date'),
        'date_planned_end': fields.function(_get_date_end, method=True, string='End Date', type='datetime'),