fix: item group not disaplying in the website if shopping cart is disabled

This commit is contained in:
Rohit Waghchaure 2019-05-21 01:46:55 +05:30
parent c356fef9c4
commit 6358370735

View File

@ -113,8 +113,9 @@ 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_qty_for_expired_items(data)
for item in data:
set_product_info_for_website(item)
if cint(frappe.db.get_single_value("Shopping Cart Settings", "enabled")):
for item in data:
set_product_info_for_website(item)
return data