From d7afa841690d48e61421581033844deb2ee1555a Mon Sep 17 00:00:00 2001 From: Thomas Binsfeld <thomas.binsfeld@acsone.eu> Date: Fri, 28 Apr 2017 12:07:07 +0200 Subject: [PATCH] [FIX] purchase: seller selection - Create an article with one supplierinfo (with a delivery delay and a min. quantity > 0) and a customer delivery delay - Trigger the creation of a PO by a procurement order for this article The supplier delivery delay is not taken into account in the date order of the PO because the seller is not selected. This is because the procurement quantity is not sent to the seller selection. opw-16702 Closes #16702 --- addons/purchase/purchase.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/purchase/purchase.py b/addons/purchase/purchase.py index 061fb804ab0c..c28a979369a4 100644 --- a/addons/purchase/purchase.py +++ b/addons/purchase/purchase.py @@ -817,7 +817,7 @@ class ProcurementOrder(models.Model): @api.v8 def _get_purchase_order_date(self, schedule_date): self.ensure_one() - seller_delay = int(self.product_id._select_seller(self.product_id).delay) + seller_delay = int(self.product_id._select_seller(product_id=self.product_id, quantity=self.product_qty).delay) return schedule_date - relativedelta(days=seller_delay) @api.v7 -- GitLab