Skip to Content
मेन्यू
This question has been flagged
1 Reply
1419 Views

Hi, im using odoo 17,  i create a field in odoo studio called  x_studio_fecha_finalizacin.

Im trying to compare the field with today date like this:
 <t t-if="job.x_studio_fecha_finalizacin &gt; today()"> 
             <p>Finalizado</p>                                                
 </t>

This is the error:

Error while render the template
TypeError: 'NoneType' object is not callable
Template: website_hr_recruitment.index
Path: /t/t/div/div[2]/div/div[2]/div/div/div/a/div/div[3]/div[2]/t[1]
Node: <t t-if="job.x_studio_fecha_finalizacin &gt; today()"/>



  
I see de today() method in the qweb documentation

Any idea?

Avatar
Discard
Best Answer

Hello, 


try :


<t t-if="job.x_studio_fecha_finalizacin and job.x_studio_fecha_finalizacin &gt; datetime.date.today()">

    <p>Finalizado</p>                                               

</t>


Best regards

Avatar
Discard
Related Posts Replies Views Activity
6
जन॰ 24
12684
1
अप्रैल 25
1185
2
मार्च 25
1318
4
नव॰ 24
7047
1
मार्च 24
1959