You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
2.3 KiB
51 lines
2.3 KiB
# -*- coding: utf-8 -*-
|
|
##############################################################################
|
|
#
|
|
# Cybrosys Technologies Pvt. Ltd.
|
|
# Copyright (C) 2017-TODAY Cybrosys Technologies(<http://www.cybrosys.com>).
|
|
# Author: Hilar AK(<hilar@cybrosys.in>)
|
|
# you can modify it under the terms of the GNU LESSER
|
|
# GENERAL PUBLIC LICENSE (LGPL v3), Version 3.
|
|
#
|
|
# It is forbidden to publish, distribute, sublicense, or sell copies
|
|
# of the Software or modified copies of the Software.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details.
|
|
#
|
|
# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE
|
|
# GENERAL PUBLIC LICENSE (LGPL v3) along with this program.
|
|
# If not, see <http://www.gnu.org/licenses/>.
|
|
#
|
|
##############################################################################
|
|
import json
|
|
from openerp import http
|
|
from openerp.http import request
|
|
|
|
|
|
class WebsiteSearch(http.Controller):
|
|
@http.route('/shop/search', csrf=False, type="http", methods=['POST', 'GET'], auth="public", website=True)
|
|
def search_contents(self, **kw):
|
|
"""
|
|
Searches products according to the category selected on front,
|
|
:param kw: dict contains the category and search key
|
|
:return: Dict with params as name, res_id, value
|
|
"""
|
|
strings = '%' + kw.get('name') + '%'
|
|
category = int(kw.get('category')) if not kw.get('category') == 'all' else ''
|
|
try:
|
|
domain = [('public_categ_ids', 'child_of', [category])] if category else []
|
|
product_as_category = request.env['product.template'].search(domain)
|
|
sql = """select id as res_id, name as name, name as value from product_template where name ILIKE %s"""
|
|
extra_query = ''
|
|
if product_as_category:
|
|
extra_query = " and id in %s"
|
|
limit = " limit 15"
|
|
request.cr.execute(sql+extra_query+limit,\
|
|
(tuple([strings]), tuple(product_as_category and product_as_category.ids)))
|
|
name = request.cr.dictfetchall()
|
|
except:
|
|
name = {'name': 'None', 'value': 'None'}
|
|
return json.dumps(name)
|
|
|