From 9b60e3f1878c86b78126b845f105c48ac07e2afe Mon Sep 17 00:00:00 2001 From: Ankush Menat Date: Thu, 3 Feb 2022 15:26:57 +0530 Subject: [PATCH] fix: default qty if not found --- erpnext/manufacturing/doctype/work_order/work_order.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/erpnext/manufacturing/doctype/work_order/work_order.py b/erpnext/manufacturing/doctype/work_order/work_order.py index b4e489a7cb..a86edfa45f 100644 --- a/erpnext/manufacturing/doctype/work_order/work_order.py +++ b/erpnext/manufacturing/doctype/work_order/work_order.py @@ -449,7 +449,7 @@ class WorkOrder(Document): def update_ordered_qty(self): if self.production_plan and self.production_plan_item: - qty = frappe.get_value("Production Plan Item", self.production_plan_item, "ordered_qty") + qty = frappe.get_value("Production Plan Item", self.production_plan_item, "ordered_qty") or 0.0 if self.docstatus == 1: qty += self.qty