Skip to Content
Menu
This question has been flagged
1 Reply
4895 Views

I would like to know how to automatically display records in a list due based on the due date date being the current day.

 

for example I would like to be able to be shown only delivery orders (grouped by status) on the current day when accessing the delivery order list view.

 

how can i set a default filter to do this?

Thanks

Avatar
Discard
Best Answer

John,

You should have a date field which stores the date. On the action, you should write the domain,

Use a domain like this :

domain = [('date', '=', context_today())]

domain = [('date','=',datetime.strftime('%%Y-%%m-%%d') )]"

domain = [('date','=',time.strftime('%%Y-%%m-%%d'))]

You may create a default filter in search view:

<filter icon="terp-go-today" string="Today" domain="[('date','&lt;=',time.strftime('%%Y-%%m-%%d 23:59:59')),('date','&gt;=',time.strftime('%%Y-%%m-%%d 00:00:00'))]" help="Today"/>

This should help.

Thanks.

Avatar
Discard