refactor adjust_for_expired_items and others as per code review

use get_all instead of get_list

rename `adjust_for_expired_items` to `adjust_qty_for_expired_items`
This commit is contained in:
tundebabzy
2018-01-31 10:36:31 +01:00
parent c7c1defe64
commit 29c8142678
2 changed files with 13 additions and 13 deletions

View File

@@ -106,12 +106,12 @@ def get_product_list_for_group(product_group=None, start=0, limit=10, search=Non
data = frappe.db.sql(query, {"product_group": product_group,"search": search, "today": nowdate()}, as_dict=1)
data = adjust_for_expired_items(data)
data = adjust_qty_for_expired_items(data)
return [get_item_for_list_in_html(r) for r in data]
def adjust_for_expired_items(data):
def adjust_qty_for_expired_items(data):
adjusted_data = []
for item in data: