跳至内容
菜单
此问题已终结
2 回复
1757 查看

Hello,

I want to add a filter to the sales app that shows the sales orders so far in the current month (updated automatically). That way I can add it to a spreadsheet to make a custom dashboard. 

However I have not been able to create a filter that filters the creation date for the current month automatically.


Can someone help?

Thanks 

形象
丢弃
最佳答案

Hi 

Try this code in search view of sale order 

   

<filter string="Current Month" name="current_month"

        domain="[('create_date','&lt;',(context_today()+relativedelta(months=1)).strftime('%%Y-%%m-01')),

        ('create_date','&gt;=',time.strftime('%%Y-%%m-01'))]"/>


Regards

形象
丢弃
编写者

Can you send a screenshot of where to put this code?

Thanks!

最佳答案

If you don't want to edit the view, (in Odoo 17+) in the filter pop-up you can input the following

(you need developer mode on)

The code is

[("date_order", ">", datetime.datetime.combine(context_today(), datetime.time(6, 0, 0)).strftime("%Y-%m-01 %H:%M:%S"))]
形象
丢弃
相关帖文 回复 查看 活动
2
9月 23
1992
1
2月 24
1301
1
12月 23
4831
1
5月 25
2212
1
4月 25
3256