[FIX]:Internal Stock move have problem if wearhouse input location = Input

lp bug: https://launchpad.net/bugs/710717 fixed

bzr revid: ksa@tinyerp.co.in-20110203055640-cg0uasduxxgafttp
This commit is contained in:
ksa (Open ERP) 2011-02-03 11:26:40 +05:30
parent 024cd2ca5b
commit e58d1c6266
1 changed files with 1 additions and 1 deletions

View File

@ -2130,7 +2130,7 @@ class stock_move(osv.osv):
prodlot_id = partial_datas and partial_datas.get('move%s_prodlot_id' % (move.id), False)
if prodlot_id:
self.write(cr, uid, [move.id], {'prodlot_id': prodlot_id}, context=context)
if move.state not in ('confirmed','done'):
if move.state not in ('confirmed','done','assigned'):
self.action_confirm(cr, uid, move_ids, context=context)
self.write(cr, uid, move_ids, {'state': 'done', 'date_planned': time.strftime('%Y-%m-%d %H:%M:%S')}, context=context)