Skip to content
Snippets Groups Projects
Commit 06eaf867 authored by Andrea Grazioso (agr-odoo)'s avatar Andrea Grazioso (agr-odoo)
Browse files

[FIX] stock: delivery date cause fail in production scheduling


Create 3 items:

* FP
 ** manufactured from SFP
 ** reordering rule
 ** manufacture lead time 2 days
* SFP
 ** manufactured from CP
 ** reordering rule
 ** manufacture lead time 2 days
* CP
 ** buy from vendor
 ** reordering rule
 ** manufacture lead time 2 days

Create a sales quotation:
 * Product: FP
 * Delivery Date: +7 days from now
Save and confirm
Run scheduler.

No Manufacturing process will be started.
This occur because the reordering rule (orderpoint) check the
quantity needed at the current date + lead days, while the move
are being planned for the delivery date specified by
the user in the SO.
Moreover the quantities that depends on datetime.now() are not recomputed
so each scheduler run is failing to schedule new orders

opw-2366925

closes odoo/odoo#60845

Signed-off-by: default avataragr-odoo <agr-odoo@users.noreply.github.com>
parent cd02e429
No related branches found
No related tags found
No related merge requests found
......@@ -409,6 +409,9 @@ class StockWarehouseOrderpoint(models.Model):
cr = registry(self._cr.dbname).cursor()
self = self.with_env(self.env(cr=cr))
orderpoints_batch = self.env['stock.warehouse.orderpoint'].browse(orderpoints_batch)
# ensure that qty_* which depends on datetime.now() are correctly
# recomputed
orderpoints_batch._compute_qty_to_order()
orderpoints_exceptions = []
while orderpoints_batch:
procurements = []
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment