Ir al contenido
Menú
Se marcó esta pregunta
1 Responder
3717 Vistas

Once installed, how do you use addon web_filter_and_condition?

The description in the module is not clear to me. Could someone please elaborate? Add some more detailed steps?

https://www.openerp.com/apps/7.0/web_filter_and_condition/

Add 'filter_condition='and' in a filter inside a search view and your filters working on the same fields will work like an "and", not an "or".

Avatar
Descartar
Mejor respuesta

Hello,

This module will allow you to get filters in the search view which are done on the same field to be filtered with "and" condition instead of native "or" condition.

Example:

In the native search view of partners, you've got "Customers" and "Suppliers" filters. When you click on both you will get all the customers and all the suppliers displayed.

If you add """ filter_condition="and" """ in the filters like this (once this module installed):

<filter string="Customers" name="customer" domain="[('customer','=',1)]" help="Customer Partners" filter_condition="and"/>
<filter string="Suppliers" name="supplier" domain="[('supplier','=',1)]" help="Supplier Partners" filter_condition="and"/>

When you will click on both, you will have all partners which are both customer and supplier.

You can check out our module hr_recruitment_skills on apps which is making this automatically working it to check all applicants which got all skills needed for a job.

Tell me if that's not clear enough.

Best regards.

Avatar
Descartar
Publicaciones relacionadas Respuestas Vistas Actividad
8
jul 24
16098
0
mar 15
8224
2
mar 15
5549
0
dic 23
4939
1
mar 17
4321