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

how convert a datetime field and compare with current date?

hi

I want to write a search view and define a filter in it, that compare "created_date" with "current date" and show all of requests that created today.

problem1: how write filter that get only date from "create_date" (because this field is datetime format)

problem2: how compare with current date?

<record id="support_services_view_search" model="ir.ui.view">

....

<filter name="today" string="Today" domain="[('??(how get date)???create_date','=',???]"/>


thanks

Avatar
Ignorer
Meilleure réponse

Hi,

You can use the below:


<filter string="Today" domain="[('datetime_field', '&gt;=', datetime.datetime.combine(context_today(), datetime.time(0,0,0))),
('datetimefield', '&lt;=', datetime.datetime.combine(context_today(), datetime.time(23,59,59)))]" />

Avatar
Ignorer
Auteur

Excellent

thanks so much for your help :)

Publications associées Réponses Vues Activité
2
janv. 23
13578
0
avr. 18
5439
0
mars 15
5115
2
janv. 24
2340
2
juin 22
4293