I'd like to have a dashboard that shows me (for example) QC Inspections that were created in the current month. Is there a way to filter dates this way?
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- Kế toán
- Tồn kho
- PoS
- Project
- MRP
Câu hỏi này đã bị gắn cờ
It should work... Let us know ...
[('create_date', '>', (datetime.datetime.now()).strftime('%Y-%m-01') )]
1 - Go to the listing where you want to add a filter.
2 - Open Studio, and add a new filtrer.
Define any filter domain. Not important now.
We don't care about the values filtered, because we will edit later.
This will create a new vue with this filter.
3 - Activate the developper mode, and access to the Vues.
Filter to the vues with date created = today to find your last view.
If you edit a filter in the quotations, you will find a view inherited to
sale.order.search.inherit.quotation
4 - Edit the view and put exactly what you want.
For example : filter on last 7 days
string="7 derniers jours"
domain="[("date_order","=",(datetime.date.today()-datetime.timedelta(days=7)).strftime("%Y-%m-%d 00:00:00"))]"/>
Inside the domain, you need to write in html.
For example "e instead of " or > instead of >
Hello,
Try this
<filter icon="terp-check" string="Current Date" name="current_date" domain="[('date','=',((context_today()).strftime('%%Y-%%m-%%d')))]"/>
hope it help
Add a filter to your view similar to this one...
<filter icon="terp-go-today" string="This Month" domain="[('date','<=',context_today().strftime('%%Y-%%m-%%d')),('date','>=',context_today().strftime('%%Y-%%m-01'))]"/>
You need context_today to use the "user" timezone" when calculating the dates...
Bạn có hứng thú với cuộc thảo luận không? Đừng chỉ đọc, hãy tham gia nhé!
Tạo tài khoản ngay hôm nay để tận hưởng các tính năng độc đáo và tham gia cộng đồng tuyệt vời của chúng tôi!
Đăng kýBài viết liên quan | Trả lời | Lượt xem | Hoạt động | |
---|---|---|---|---|
|
2
thg 3 25
|
5955 | ||
|
0
thg 12 24
|
1066 | ||
|
2
thg 1 24
|
1760 | ||
|
1
thg 9 23
|
1426 | ||
|
0
thg 2 25
|
1450 |