chore: linting issues

(cherry picked from commit 16573378870bb9c6e80f39e80fa43e5b2cc0a69f)
This commit is contained in:
Gursheen Anand 2023-11-22 16:45:14 +05:30 committed by Mergify
parent 3d46b323b3
commit d076aca998

View File

@ -350,11 +350,12 @@ class SellingController(StockController):
return il
def has_product_bundle(self, item_code):
return frappe.db.sql(
"""select name from `tabProduct Bundle`
where new_item_code=%s and disabled=0""",
item_code,
)
product_bundle = frappe.qb.DocType("Product Bundle")
return (
frappe.qb.from_(product_bundle)
.select(product_bundle.name)
.where((product_bundle.new_item_code == item_code) & (product_bundle.disabled == 0))
).run()
def get_already_delivered_qty(self, current_docname, so, so_detail):
delivered_via_dn = frappe.db.sql(