Passa al contenuto
Menu
È necessario essere registrati per interagire con la community.
La domanda è stata contrassegnata
2 Risposte
8494 Visualizzazioni

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
Abbandona
Risposta migliore

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
Abbandona
Risposta migliore

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
Abbandona
Post correlati Risposte Visualizzazioni Attività
2
ott 23
6527
2
nov 22
6926
1
giu 22
3389
0
set 21
3025
4
ago 20
7843