Skip ke Konten
Menu
Pertanyaan ini telah diberikan tanda
2 Replies
8474 Tampilan

Hi I'm using odoo 10 community and I have a question regarding the search bar:


When I'm searching a specific variation in my inventory and I'm using the search bar, odoo automatically add attribute search with an "OR" opérator. is it possible to search several attributes with an "AND" operator. I don't want to use a custom filter since it would be very long to make a search.



thanks



thanks for your help!

Avatar
Buang
Jawaban Terbai

hello you can point your resarch to a function called in your  model and test it with boolean field

there is an example

check_maladie_convertie=fields.Boolean(string="Holiday_maladie_Type_to_convert", compute='_check_maladie_type')

    @api.multi

    def _check_maladie_type(self):

  holidays=self.env['hr.holidays'].search([("employee_id",'=', self.employee_id.id)])

  holidays_maladie=self.env['hr.holidays'].search([("employee_id",'=',self.employee_id.id),

    ('type', '=', 'remove'),

    ('HolidayStatus_name','=','maladie'),

    ('state','=','validate')])

  for holiday in holidays_maladie:

   holiday.check_maladie_convertie =True

Avatar
Buang
Jawaban Terbai

See https://www.odoo.com/apps/modules/10.0/web_search_with_and/

Use AND conditions on omnibar search

When searching for records on same field Odoo joins multiple queries with OR. For example:

  • Perform a search for customer "John" on field Name
  • Odoo displays customers containing "John"
  • Search for "Smith" on same field Name
  • Odoo displays customers containing "John" OR "Smith"

With this module installed you can press Shift key before searching for "Smith" and Odoo finds customers containing "John" AND "Smith"


Avatar
Buang
Post Terkait Replies Tampilan Aktivitas
2
Okt 23
6524
2
Nov 22
6921
1
Jun 22
3385
0
Sep 21
3022
4
Agu 20
7838