Merge pull request #2162 from nabinhait/hotfix

Get items in PO from material requests based on supplier
This commit is contained in:
Anand Doshi 2014-09-09 12:07:27 +05:30
commit ab74a502e2

View File

@ -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