fix: wrong qty of remaining work orders to be created when using "Create" > "Work Order" (#34726)
fix: wrong qty of remaining work orders to be created when using "Create" > "Work Order" (#34726)
* fix: convert asynchronous field update to synchronous
* fix: wrong qty of remaining work orders to be created when using "Create" > "Work Order"
(cherry picked from commit 189b020d22)
Co-authored-by: danjeremynavarro <46537526+danjeremynavarro@users.noreply.github.com>
This commit is contained in:
@@ -1340,8 +1340,9 @@ def get_work_order_items(sales_order, for_raw_material_request=0):
|
|||||||
.select(Sum(wo.qty))
|
.select(Sum(wo.qty))
|
||||||
.where(
|
.where(
|
||||||
(wo.production_item == i.item_code)
|
(wo.production_item == i.item_code)
|
||||||
& (wo.sales_order == so.name) * (wo.sales_order_item == i.name)
|
& (wo.sales_order == so.name)
|
||||||
& (wo.docstatus.lte(2))
|
& (wo.sales_order_item == i.name)
|
||||||
|
& (wo.docstatus.lt(2))
|
||||||
)
|
)
|
||||||
.run()[0][0]
|
.run()[0][0]
|
||||||
)
|
)
|
||||||
|
|||||||
Reference in New Issue
Block a user