Odooers论坛

欢迎!

该社区面向专业人士和我们产品和服务的爱好者。
分享和讨论最好的内容和新的营销理念,建立您的专业形象,一起成为更好的营销人员。


0

View new pipline created today on kanban

形象
odoo
1 备注
形象
丢弃
形象
odoo
-

I finally solved my problem.
Create one filter by add the following line in ControllerPanelView:

<filter string="Today" name="today" domain="[('create_date', '&gt;=', datetime.datetime.now().strftime('%Y-%m-%d')), ('create_date', '&lt;=', datetime.datetime.now().strftime('%Y-%m-%d'))]"/>

Thanks & Regards!

2 答案
0
形象
odoo
最佳答案

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.

形象
丢弃
0
形象
odoo
最佳答案

So I have to change filter at tomorrow? Because I want to view pipeline day by day and pipeline of that day only.

2 注释
形象
丢弃
形象
odoo
-

Yes, by using custom filter you would require to change it for the specific day you want to view.

If you wish to view pipeline day by day then you can simply group by "creation date" and select day. However, in the kanban view columns would be date and no longer stage

形象
odoo
-

Thank you!