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
- Akuntansi
- Inventaris
- PoS
- Project
- MRP
Pertanyaan ini telah diberikan tanda
1
Balas
3500
Tampilan
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()
Menikmati diskusi? Jangan hanya membaca, ikuti!
Buat akun sekarang untuk menikmati fitur eksklufi dan agar terlibat dengan komunitas kami!
DaftarPost Terkait | Replies | Tampilan | Aktivitas | |
---|---|---|---|---|
|
1
Des 15
|
5824 | ||
|
1
Jan 25
|
1717 | ||
|
0
Agu 22
|
2583 | ||
|
2
Jul 22
|
2418 | ||
|
0
Mar 22
|
2573 |
open list view and give group by project will that work ?