2019-03-19 06:18:32 +00:00
|
|
|
import frappe
|
|
|
|
from erpnext.portal.product_configurator.utils import (get_products_for_website, get_product_settings,
|
|
|
|
get_field_filter_data, get_attribute_filter_data)
|
2020-12-24 12:24:07 +00:00
|
|
|
from erpnext.shopping_cart.product_query import ProductQuery
|
2020-12-29 11:48:58 +00:00
|
|
|
from erpnext.shopping_cart.filters import ProductFiltersBuilder
|
2019-03-19 06:18:32 +00:00
|
|
|
|
2019-03-20 08:41:22 +00:00
|
|
|
sitemap = 1
|
|
|
|
|
2019-03-19 06:18:32 +00:00
|
|
|
def get_context(context):
|
|
|
|
|
|
|
|
if frappe.form_dict:
|
|
|
|
search = frappe.form_dict.search
|
|
|
|
field_filters = frappe.parse_json(frappe.form_dict.field_filters)
|
|
|
|
attribute_filters = frappe.parse_json(frappe.form_dict.attribute_filters)
|
2021-01-20 12:14:08 +00:00
|
|
|
start = frappe.parse_json(frappe.form_dict.start)
|
2019-03-19 06:18:32 +00:00
|
|
|
else:
|
|
|
|
search = field_filters = attribute_filters = None
|
2021-01-20 12:14:08 +00:00
|
|
|
start = 0
|
2019-03-19 06:18:32 +00:00
|
|
|
|
2020-12-24 12:24:07 +00:00
|
|
|
engine = ProductQuery()
|
2021-01-20 12:14:08 +00:00
|
|
|
context.items = engine.query(attribute_filters, field_filters, search, start)
|
2019-03-19 06:18:32 +00:00
|
|
|
|
2020-12-22 07:14:09 +00:00
|
|
|
# Add homepage as parent
|
|
|
|
context.parents = [{"name": frappe._("Home"), "route":"/"}]
|
|
|
|
|
2019-03-19 06:18:32 +00:00
|
|
|
product_settings = get_product_settings()
|
2020-12-29 11:48:58 +00:00
|
|
|
filter_engine = ProductFiltersBuilder()
|
2019-03-19 06:18:32 +00:00
|
|
|
|
2020-12-29 11:48:58 +00:00
|
|
|
context.field_filters = filter_engine.get_field_filters()
|
|
|
|
context.attribute_filters = filter_engine.get_attribute_fitlers()
|
2019-03-19 06:18:32 +00:00
|
|
|
|
|
|
|
context.product_settings = product_settings
|
2020-12-24 12:24:07 +00:00
|
|
|
context.body_class = "product-page"
|
2020-12-29 11:48:58 +00:00
|
|
|
context.page_length = product_settings.products_per_page or 20
|
2019-03-19 06:18:32 +00:00
|
|
|
|
|
|
|
context.no_cache = 1
|