fix(ecommerce): remove query to non-existing field (backport #31771) (#31773)

fix(ecommerce): remove query to non-existing field (#31771)

(cherry picked from commit 17b9bfd249)

Co-authored-by: Ankush Menat <ankush@frappe.io>
This commit is contained in:
mergify[bot]
2022-08-03 16:49:16 +05:30
committed by GitHub
parent 2defb89962
commit 8737c10ce4

View File

@@ -142,10 +142,6 @@ def get_item_for_list_in_html(context):
if (context.get("website_image") or "").startswith("files/"):
context["website_image"] = "/" + quote(context["website_image"])
context["show_availability_status"] = cint(
frappe.db.get_single_value("E Commerce Settings", "show_availability_status")
)
products_template = "templates/includes/products_as_list.html"
return frappe.get_template(products_template).render(context)