0
2 答案
0
最佳答案
You can use advanced filter on kanban view and define the period from Filter > Add custom filter > Created on and select your criteria (since you want today you can use "is after") and provide the datetime.
I finally solved my problem.
Create one filter by add the following line in ControllerPanelView:
<filter string="Today" name="today" domain="[('create_date', '>=', datetime.datetime.now().strftime('%Y-%m-%d')), ('create_date', '<=', datetime.datetime.now().strftime('%Y-%m-%d'))]"/>
Thanks & Regards!