Skip to content

Commit

Permalink
Merge pull request #36221 from s-aga-r/FIX-ISS-23-24-02079
Browse files Browse the repository at this point in the history
perf: use `LEFT JOIN` instead of `NOT EXISTS`
  • Loading branch information
s-aga-r authored Jul 28, 2023
2 parents 4e58503 + 148d466 commit d9ac7f9
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@ def on_submit(self):
else:
frappe.enqueue(
method="erpnext.manufacturing.doctype.bom_update_log.bom_update_log.process_boms_cost_level_wise",
queue="long",
update_doc=self,
now=frappe.flags.in_test,
enqueue_after_commit=True,
Expand Down
19 changes: 13 additions & 6 deletions erpnext/manufacturing/doctype/bom_update_log/bom_updation_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -157,12 +157,19 @@ def _all_children_are_processed(parent_bom):
def get_leaf_boms() -> List[str]:
"Get BOMs that have no dependencies."

return frappe.db.sql_list(
"""select name from `tabBOM` bom
where docstatus=1 and is_active=1
and not exists(select bom_no from `tabBOM Item`
where parent=bom.name and bom_no !='')"""
)
bom = frappe.qb.DocType("BOM")
bom_item = frappe.qb.DocType("BOM Item")

boms = (
frappe.qb.from_(bom)
.left_join(bom_item)
.on((bom.name == bom_item.parent) & (bom_item.bom_no != ""))
.select(bom.name)
.where((bom.docstatus == 1) & (bom.is_active == 1) & (bom_item.bom_no.isnull()))
.distinct()
).run(pluck=True)

return boms


def _generate_dependence_map() -> defaultdict:
Expand Down

0 comments on commit d9ac7f9

Please sign in to comment.