[IMP] procurement: consistent cording for MTS/MTO

bzr revid: ls@numerigraphe.fr-20120222131216-z5mgm13ee5a3dmb3
This commit is contained in:
Numerigraphe - Lionel Sausin 2012-02-22 14:12:16 +01:00
parent 84dda4b2b6
commit 9e346ccb11
1 changed files with 1 additions and 1 deletions

View File

@ -98,7 +98,7 @@ class procurement_order(osv.osv):
'move_id': fields.many2one('stock.move', 'Reservation', ondelete='set null'),
'close_move': fields.boolean('Close Move at end', required=True),
'location_id': fields.many2one('stock.location', 'Location', required=True, states={'draft':[('readonly',False)]}, readonly=True),
'procure_method': fields.selection([('make_to_stock','from stock'),('make_to_order','on order')], 'Procurement Method', states={'draft':[('readonly',False)], 'confirmed':[('readonly',False)]},
'procure_method': fields.selection([('make_to_stock','Make to Stock'),('make_to_order','Make to Order')], 'Procurement Method', states={'draft':[('readonly',False)], 'confirmed':[('readonly',False)]},
readonly=True, required=True, help="If you encode manually a Procurement, you probably want to use" \
" a make to order method."),