mirror of
https://github.com/frappe/erpnext.git
synced 2026-04-24 00:58:29 +00:00
Merge pull request #2162 from nabinhait/hotfix
Get items in PO from material requests based on supplier
This commit is contained in:
@@ -260,7 +260,7 @@ def make_purchase_order_based_on_supplier(source_name, target_doc=None):
|
||||
target_doc.supplier = source_name
|
||||
set_missing_values(source, target_doc)
|
||||
target_doc.set("po_details", [d for d in target_doc.get("po_details")
|
||||
if d.get("item_code") in supplier_items and d.get("qty" > 0)])
|
||||
if d.get("item_code") in supplier_items and d.get("qty") > 0])
|
||||
|
||||
return target_doc
|
||||
|
||||
|
||||
Reference in New Issue
Block a user