[FIX] removed not needed states condition

bzr revid: jam@tinyerp.com-20120910095104-sb0uco3gwzcr1vo3
This commit is contained in:
Jigar Amin - OpenERP 2012-09-10 15:21:04 +05:30
parent af555bdd84
commit 57ff1302c6
1 changed files with 1 additions and 1 deletions

View File

@ -1069,7 +1069,7 @@ class mrp_production_workcenter_line(osv.osv):
_inherit = ['mail.thread']
_columns = {
'name': fields.char('Work Order', size=64, required=True, states={'in_production':[('readonly',True)]}),
'name': fields.char('Work Order', size=64, required=True),
'workcenter_id': fields.many2one('mrp.workcenter', 'Work Center', required=True),
'cycle': fields.float('Number of Cycles', digits=(16,2)),
'hour': fields.float('Number of Hours', digits=(16,2)),