This question has been flagged
2 Replies
19106 Views

Hi guys,


I'm having some issues with domains. I know I can use | if I have an or condition. Initially I had the following code:

<field name="gebruik_zorgverlener_adres" attrs="{'invisible': ['|',('gebruik_organisatie_adres','=',True),('gebruik_prive_adres','=',True)]}"/>

<field name="gebruik_organisatie_adres" attrs="{'invisible': ['|',('gebruik_zorgverlener_adres','=',True),('gebruik_prive_adres','=',True)]}"/>

<field name="gebruik_prive_adres" groups="my_module.group_sel_manager" attrs="{'invisible': ['|',('gebruik_zorgverlener_adres','=',True),('gebruik_organisatie_adres','=',True)]}"/

Which is basically saying that when one of those fields is checked on that all others should become invisible. This piece of code works fine!
When I now add a fourth field and add another or condition to all those attrs it will not however. My attempt:

<field name="gebruik_zorgverlener_adres" attrs="{'invisible': ['|',('gebruik_organisatie_adres','=',True),('gebruik_prive_adres','=',True), ('gebruik_maatschappelijke_zetel_adres','=',True)]}"/>

<field name="gebruik_organisatie_adres" attrs="{'invisible': ['|',('gebruik_zorgverlener_adres','=',True),('gebruik_prive_adres','=',True), ('gebruik_maatschappelijke_zetel_adres','=',True)]}"/>

<field name="gebruik_prive_adres" groups="my_module.group_sel_manager" attrs="{'invisible': ['|',('gebruik_zorgverlener_adres','=',True),('gebruik_organisatie_adres','=',True), ('gebruik_maatschappelijke_zetel_adres','=',True)]}"/>

<field name="gebruik_maatschappelijke_zetel_adres" attrs="{'invisible': ['|',('gebruik_zorgverlener_adres','=',True),('gebruik_prive_adres','=',True), ('gebruik_organisatie_adres','=',True)]}"/>

I simply added another field to all those or conditions for all fields but yet this totally fails. When I now test this code not one checkbox will be hidden or shown depending on what I do.
So, what is the correct way to write an or domain so that always only one of those four checkboxes is shown to the user? and is there no other way to write the domain then by calling ALL other field names? There must be a shorter way to code this?

Thank you,
Yenthe

Avatar
Discard

as "or" operator '|' is a default one, it's not necessary to use it here at all. Try to write all the same domains without any operator, remove all '|'-s, like this:

 attrs="{'invisible': [('gebruik_organisatie_adres','=',True),('gebruik_prive_adres','=',True), ('gebruik_maatschappelijke_zetel_adres','=',True)]}" 

@temur, default operator is AND !

Best Answer

@Yenthe

Your domains could be get it fixed by adding another '|', like:

<field name="gebruik_zorgverlener_adres" attrs="{'invisible': ['|','|',('gebruik_organisatie_adres','=',True),('gebruik_prive_adres','=',True), ('gebruik_maatschappelijke_zetel_adres','=',True)]}"/>

<field name="gebruik_organisatie_adres" attrs="{'invisible': ['|','|',('gebruik_zorgverlener_adres','=',True),('gebruik_prive_adres','=',True), ('gebruik_maatschappelijke_zetel_adres','=',True)]}"/>

<field name="gebruik_prive_adres" groups="my_module.group_sel_manager" attrs="{'invisible': ['|','|',('gebruik_zorgverlener_adres','=',True),('gebruik_organisatie_adres','=',True), ('gebruik_maatschappelijke_zetel_adres','=',True)]}"/>

<field name="gebruik_maatschappelijke_zetel_adres" attrs="{'invisible': ['|','|',('gebruik_zorgverlener_adres','=',True),('gebruik_prive_adres','=',True), ('gebruik_organisatie_adres','=',True)]}"/>

The thing is that you need to put all the operators in the beginning of the domain to be used like an stack to be matching the domain terms.

Avatar
Discard
Author

Thanks a lot Axel, great answer.