[IMP] procurement: history of procurement order improved by adding a log when a rule is chosen

bzr revid: qdp-launchpad@openerp.com-20131009102245-y6cwo3beh3pk4no8
This commit is contained in:
Quentin (OpenERP) 2013-10-09 12:22:45 +02:00
parent b52d479de8
commit ae42b06bce
1 changed files with 2 additions and 0 deletions

View File

@ -199,6 +199,8 @@ class procurement_order(osv.osv):
if procurement.product_id.type != 'service':
rule_id = self._find_suitable_rule(cr, uid, procurement, context=context)
if rule_id:
rule = self.pool.get('procurement.rule').browse(cr, uid, rule_id, context=context)
self.message_post(cr, uid, [procurement.id], body=_('Following rule %s for the procurement resolution.') % (rule.name), context=context)
self.write(cr, uid, [procurement.id], {'rule_id': rule_id}, context=context)
return True
return False