Se rendre au contenu
Menu
Cette question a été signalée
1 Répondre
5194 Vues

For example,
Like the below function,easily set the invisible function in ~addons/hr/views/*.xml
<field name="resign_date" attrs="{'invisible':[('resign_date', '=', '9000-12-31')]}"/>
but how to set the specific field to invisible in printed report in ~addons/hr/report/*.xml
<tr t-foreach="docs" t-as="l">
<td>
<span t-field="l.resign_date"/>
</td>
</tr>

Avatar
Ignorer
Meilleure réponse

Hi,

You can use t-if. 

<t t-if="your condition">
       <span t-field="l.resign_date"/>                       
</t>


Thanks & Regards

Avinash N K

Avatar
Ignorer
Auteur

No matter the date is '9000-12-31' or not,still display in the printed report.What's the mistake of the code?

<td>

<t t-if="l.resign_date != '9000-12-31'">

<span t-field="l.resign_date"/>

</t>

</td>

Publications associées Réponses Vues Activité
3
juil. 23
30729
1
juil. 23
2643
1
avr. 22
7069
1
févr. 22
2667
2
sept. 17
14003