Hi. I am running several projects and have found that there is no numbering of the tasks in the order of creation. Basically I cannot see which task was created before the other except when I open it. This is extremely uncomfortable and creates extra work.
Could you please help maybe there is some workaround. Does anybody have the same issue?)
Thanks
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- Accounting
- Inventory
- PoS
- Project management
- MRP
This question has been flagged
1
Reply
2584
Views
If You're searching a way to make it work with code, try adding list view with data from query like that:
project_id = 1 #set needed project id
self.env.cr.execute("""SELECT * FROM public.project_task
WHERE project_id = """ + project_id +
ORDER BY create_date""")
self.env.cr.fetchall()
Enjoying the discussion? Don't just read, join in!
Create an account today to enjoy exclusive features and engage with our awesome community!
Sign upRelated Posts | Replies | Views | Activity | |
---|---|---|---|---|
|
1
Dec 15
|
5028 | ||
|
0
Nov 24
|
68 | ||
|
0
Aug 22
|
1269 | ||
|
2
Jul 22
|
1266 | ||
|
0
Mar 22
|
1263 |
open list view and give group by project will that work ?