915b34391c
* chore: Added isort to pre-commit config * chore: Sort imports with isort * chore: Clean up imports with pycln * chore: Sort imports with isort * chore: Fix import issues * chore: Clean up sider issues * chore: Remove import errors from flake8 ignore list * chore: Clean up lint issues
52 lines
1.7 KiB
Python
52 lines
1.7 KiB
Python
# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors
|
|
# License: GNU General Public License v3. See license.txt
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
import frappe
|
|
from frappe.utils import cint, cstr, nowdate
|
|
|
|
from erpnext.setup.doctype.item_group.item_group import get_item_for_list_in_html
|
|
from erpnext.shopping_cart.product_info import set_product_info_for_website
|
|
|
|
no_cache = 1
|
|
|
|
def get_context(context):
|
|
context.show_search = True
|
|
|
|
@frappe.whitelist(allow_guest=True)
|
|
def get_product_list(search=None, start=0, limit=12):
|
|
# limit = 12 because we show 12 items in the grid view
|
|
|
|
# base query
|
|
query = """select I.name, I.item_name, I.item_code, I.route, I.image, I.website_image, I.thumbnail, I.item_group,
|
|
I.description, I.web_long_description as website_description, I.is_stock_item,
|
|
case when (S.actual_qty - S.reserved_qty) > 0 then 1 else 0 end as in_stock, I.website_warehouse,
|
|
I.has_batch_no
|
|
from `tabItem` I
|
|
left join tabBin S on I.item_code = S.item_code and I.website_warehouse = S.warehouse
|
|
where (I.show_in_website = 1)
|
|
and I.disabled = 0
|
|
and (I.end_of_life is null or I.end_of_life='0000-00-00' or I.end_of_life > %(today)s)"""
|
|
|
|
# search term condition
|
|
if search:
|
|
query += """ and (I.web_long_description like %(search)s
|
|
or I.description like %(search)s
|
|
or I.item_name like %(search)s
|
|
or I.name like %(search)s)"""
|
|
search = "%" + cstr(search) + "%"
|
|
|
|
# order by
|
|
query += """ order by I.weightage desc, in_stock desc, I.modified desc limit %s, %s""" % (cint(start), cint(limit))
|
|
|
|
data = frappe.db.sql(query, {
|
|
"search": search,
|
|
"today": nowdate()
|
|
}, as_dict=1)
|
|
|
|
for item in data:
|
|
set_product_info_for_website(item)
|
|
|
|
return [get_item_for_list_in_html(r) for r in data]
|