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

This commit is contained in:
Ankush Menat 2022-08-03 16:48:27 +05:30 committed by GitHub
parent ea88451875
commit 17b9bfd249
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -142,10 +142,6 @@ def get_item_for_list_in_html(context):
if (context.get("website_image") or "").startswith("files/"): if (context.get("website_image") or "").startswith("files/"):
context["website_image"] = "/" + quote(context["website_image"]) 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" products_template = "templates/includes/products_as_list.html"
return frappe.get_template(products_template).render(context) return frappe.get_template(products_template).render(context)