[MERGE] purchase_requisition: fixed bug 908064: fixed warning when trying to request more than one quotation from a given partner

bzr revid: tde@openerp.com-20111223145943-87wfeonscz866ue4
This commit is contained in:
Thibault Delavallée 2011-12-23 15:59:43 +01:00
commit a3220f837a
1 changed files with 1 additions and 1 deletions

View File

@ -133,7 +133,7 @@ class purchase_requisition(osv.osv):
res = {}
for requisition in self.browse(cr, uid, ids, context=context):
if supplier.id in filter(lambda x: x, [rfq.state <> 'cancel' and rfq.partner_id.id or None for rfq in requisition.purchase_ids]):
raise osv.except_osv(_('Warning'), _('You have already one %s purchase order for this partner, you must cancel this purchase order to create a new quotation.') % supp_record.state)
raise osv.except_osv(_('Warning'), _('You have already one %s purchase order for this partner, you must cancel this purchase order to create a new quotation.') % rfq.state)
location_id = requisition.warehouse_id.lot_input_id.id
purchase_id = purchase_order.create(cr, uid, {
'origin': requisition.name,