[FIX] purchase: duplicate origin in PO

When a "Drop Shipping" route is used on a product, the origin document
is duplicated on the PO created. This is because in this case,
po_rec.origin and procurement.origin are the same.

opw-671039
This commit is contained in:
Nicolas Martinelli 2016-03-09 15:57:00 +01:00
parent 13c33264e6
commit 560e5eec15
1 changed files with 1 additions and 1 deletions

View File

@ -1517,7 +1517,7 @@ class procurement_order(osv.osv):
po_id = available_draft_po_ids[0]
po_rec = po_obj.browse(cr, uid, po_id, context=context)
po_to_update = {'origin': ', '.join(filter(None, [po_rec.origin, procurement.origin]))}
po_to_update = {'origin': ', '.join(filter(None, set([po_rec.origin, procurement.origin])))}
#if the product has to be ordered earlier those in the existing PO, we replace the purchase date on the order to avoid ordering it too late
if datetime.strptime(po_rec.date_order, DEFAULT_SERVER_DATETIME_FORMAT) > purchase_date:
po_to_update.update({'date_order': purchase_date.strftime(DEFAULT_SERVER_DATETIME_FORMAT)})