[REF] [MRP] action_po_assign method refactoring: several purchase.order where made and not linked to their procurement only last id was returned. -> Not possible to override cleany for instance to pass custom options from a procurement to a production order. Implemented it with the {} trick. This is debatable whether {} links or hook before creation is better. At least now you can override it...

bzr revid: rvalyi@gmail.com-20100228041610-knbvwzptzgzjyq42
This commit is contained in:
Raphaël Valyi 2010-02-28 01:16:10 -03:00
parent 353f7026a1
commit dc1722f35d
1 changed files with 3 additions and 2 deletions

View File

@ -1147,7 +1147,7 @@ class mrp_procurement(osv.osv):
return res
def action_po_assign(self, cr, uid, ids, context={}):
purchase_id = False
res = {}
company = self.pool.get('res.users').browse(cr, uid, uid, context).company_id
for procurement in self.browse(cr, uid, ids):
res_id = procurement.move_id.id
@ -1199,8 +1199,9 @@ class mrp_procurement(osv.osv):
'company_id': procurement.company_id.id,
'fiscal_position': partner.property_account_position and partner.property_account_position.id or False
})
res[procurement.id] = purchase_id
self.write(cr, uid, [procurement.id], {'state':'running', 'purchase_id':purchase_id})
return purchase_id
return res
def action_cancel(self, cr, uid, ids):
todo = []