[IMP]: Improve minor changes

bzr revid: ksa@tinyerp.co.in-20110218095357-nz4emmmsxn1pwpgn
This commit is contained in:
ksa (Open ERP) 2011-02-18 15:23:57 +05:30
parent 873d19a629
commit 00ff5ceb5b
5 changed files with 17 additions and 17 deletions

View File

@ -50,7 +50,7 @@
Reports provided by this module:
* Bill of Material structure and components
* Load forecast on work Centers
* Load forecast on Work Centers
* Print a production order
* Stock forecasts
Dashboard provided by this module::

View File

@ -1053,7 +1053,7 @@ msgid "\n"
"\n"
" Reports provided by this module:\n"
" * Bill of Material structure and components\n"
" * Load forecast on work Centers\n"
" * Load forecast on Work Centers\n"
" * Print a production order\n"
" * Stock forecasts\n"
" Dashboard provided by this module::\n"
@ -2012,7 +2012,7 @@ msgstr ""
#. module: mrp
#: help:mrp.routing.workcenter,routing_id:0
msgid "Routing indicates all the work Centers used, for how long and/or cycles.If Routing is indicated then,the third tab of a production order (Work Centers) will be automatically pre-completed."
msgid "Routing indicates all the Work Centers used, for how long and/or cycles.If Routing is indicated then,the third tab of a production order (Work Centers) will be automatically pre-completed."
msgstr ""
#. module: mrp

View File

@ -109,10 +109,10 @@ class mrp_routing_workcenter(osv.osv):
_columns = {
'workcenter_id': fields.many2one('mrp.workcenter', 'Work Center', required=True),
'name': fields.char('Name', size=64, required=True),
'sequence': fields.integer('Sequence', help="Gives the sequence order when displaying a list of routing work Centers."),
'sequence': fields.integer('Sequence', help="Gives the sequence order when displaying a list of routing Work Centers."),
'cycle_nbr': fields.float('Number of Cycles', required=True,
help="Number of iterations this work center has to do in the specified operation of the routing."),
'hour_nbr': fields.float('Number of Hours', required=True, help="Time in hours for this work Center to achieve the operation of the specified routing."),
'hour_nbr': fields.float('Number of Hours', required=True, help="Time in hours for this Work Center to achieve the operation of the specified routing."),
'routing_id': fields.many2one('mrp.routing', 'Parent Routing', select=True, ondelete='cascade',
help="Routing indicates all the Work Centers used, for how long and/or cycles." \
"If Routing is indicated then,the third tab of a production order (Work Centers) will be automatically pre-completed."),

View File

@ -468,7 +468,7 @@ msgstr ""
#. module: mrp_operations
#: help:mrp.production.workcenter.line,delay:0
msgid "This is lead time between operation start and stop in this work center"
msgid "This is lead time between operation start and stop in this Work Center"
msgstr ""
#. module: mrp_operations

View File

@ -97,7 +97,7 @@ class mrp_production_workcenter_line(osv.osv):
'date_planned_end': fields.function(_get_date_end, method=True, string='End Date', type='datetime'),
'date_start': fields.datetime('Start Date'),
'date_finished': fields.datetime('End Date'),
'delay': fields.float('Working Hours',help="This is lead time between operation start and stop in this work center",readonly=True),
'delay': fields.float('Working Hours',help="This is lead time between operation start and stop in this Work Center",readonly=True),
'production_state':fields.related('production_id','state',
type='selection',
selection=[('draft','Draft'),('picking_except', 'Picking Exception'),('confirmed','Waiting Goods'),('ready','Ready to Produce'),('in_production','In Production'),('cancel','Canceled'),('done','Done')],