Hello
I included a page with a tree view in a form view and I would like to hide the rows depending on this condition:('date_sortie','>=',current_date).
I tried to add this condition in the domain below but it doesnt work, could you help to fix this issue?
thks a lot, Bruno
<page string="Ayants droits">
<group attrs="{'invisible': [('provider_type', '!=', 'acp')]}" name="ayants_droit">
</group>
<field name="ayants_droit_ids" domain="[('parent_id', '=', member_id),('parent_id','!=',False)]" context="{'default_parent_id': member_id,'default_type':'ayant_droit',}">
<tree default_order="lastname asc" limit="80">
<field name="title"/>
<field name="lastname"/>
<field name="firstname"/>
<field name="date_entree"/>
</tree>
</field>
</page>