fix: check item_code in all rows of po_items (#31741)

fix: check item-code in each row of po-items
This commit is contained in:
Sagar Sharma 2022-08-13 11:07:22 +05:30 committed by GitHub
parent e5e88bb9f1
commit 0047e18a9b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -639,6 +639,9 @@ class ProductionPlan(Document):
sub_assembly_items_store = [] # temporary store to process all subassembly items
for row in self.po_items:
if not row.item_code:
frappe.throw(_("Row #{0}: Please select Item Code in Assembly Items").format(row.idx))
bom_data = []
get_sub_assembly_items(row.bom_no, bom_data, row.planned_qty)
self.set_sub_assembly_items_based_on_level(row, bom_data, manufacturing_type)