Skip to Content
เมนู
คุณต้องลงทะเบียนเพื่อโต้ตอบกับคอมมูนิตี้
คำถามนี้ถูกตั้งค่าสถานะ
1 ตอบกลับ
2630 มุมมอง

i am trying ecommerce shop using odoo13 ce.

my problem is
shop search bar can search internal reference but can not search barcode.
how to search include barcode from shop search bar?

Thanks

อวตาร
ละทิ้ง

Do you mean that shop visitors enter a 13 digit barcode for example?

ผู้เขียน

yes,

visitors enter a 13 digit barcode

คำตอบที่ดีที่สุด

Hi,

If you need to search the products with barcode in the website, you have to inherit and modify the function named: _get_search_domain inside the website_sale module.


def _get_search_domain(self, search, category, attrib_values, search_in_description=True):
domains = [request.website.sale_product_domain()]
if search:
for srch in search.split(" "):
subdomains = [
[('name', 'ilike', srch)],
[('product_variant_ids.default_code', 'ilike', srch)]
]
if search_in_description:
subdomains.append([('barcode', 'ilike', srch)])
subdomains.append([('description', 'ilike', srch)])
subdomains.append([('description_sale', 'ilike', srch)])
domains.append(expression.OR(subdomains))

In the above code sample, you can see that i have added barcode field to search. So you can inherit the above in a custom module and make necessary changes,

For reference:
1. Inheriting controllers in odoo
2. Q Context in Odoo

Thanks

อวตาร
ละทิ้ง
Related Posts ตอบกลับ มุมมอง กิจกรรม
1
ส.ค. 24
1581
1
พ.ค. 25
1858
2
เม.ย. 24
1355
0
ธ.ค. 23
1482
2
มิ.ย. 21
3123