minot fix in material request
This commit is contained in:
parent
32a3a86a00
commit
448c9b71c1
@ -287,6 +287,7 @@ def make_purchase_order_based_on_supplier(source_name, target_doc=None):
|
||||
def get_material_requests_based_on_supplier(supplier):
|
||||
supplier_items = [d[0] for d in frappe.db.get_values("Item",
|
||||
{"default_supplier": supplier})]
|
||||
if supplier_items:
|
||||
material_requests = frappe.db.sql_list("""select distinct mr.name
|
||||
from `tabMaterial Request` mr, `tabMaterial Request Item` mr_item
|
||||
where mr.name = mr_item.parent
|
||||
@ -296,6 +297,8 @@ def get_material_requests_based_on_supplier(supplier):
|
||||
and mr.docstatus = 1
|
||||
and mr.status != 'Stopped'""" % ', '.join(['%s']*len(supplier_items)),
|
||||
tuple(supplier_items))
|
||||
else:
|
||||
material_requests = []
|
||||
return material_requests, supplier_items
|
||||
|
||||
@frappe.whitelist()
|
||||
|
Loading…
Reference in New Issue
Block a user