Skip to Content
Menu
Musisz się zarejestrować, aby móc wchodzić w interakcje z tą społecznością.
To pytanie dostało ostrzeżenie
1 Odpowiedz
3829 Widoki

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".

Awatar
Odrzuć
Najlepsza odpowiedź

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.

Awatar
Odrzuć
Powiązane posty Odpowiedzi Widoki Czynność
8
lip 24
16278
0
mar 15
8377
2
mar 15
5686
0
gru 23
5048
1
mar 17
4425