Guys, is it possible to sort tasks in projects by date ?
How can i do it ?
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
Guys, is it possible to sort tasks in projects by date ?
How can i do it ?
Hi. Go to Project -> Tasks, turn on the List view and then use Advanced filters (e.g Ending date) to filter the information.
You can use either _order in your python file by inheriting the project.task model or by adding the default_order attribute by inheriting the tree view in your xml file.
in .py file:
class task(models.Model):
_inherit = 'project.task'
_order = 'date_start desc'
in xml file:
<record id="view_task_tree2_inherited" model="ir.ui.view">
<field name="name">view.task.tree2.inherited</field>
<field name="model">project.task</field>
<field name="inherit_id" ref="project.view_task_tree2"/>
<field name="arch" type="xml">
<tree position="attributes">
<attribute name="default_order">date_start desc</attribute>
</tree>
</field>
</record>
Buat akun sekarang untuk menikmati fitur eksklufi dan agar terlibat dengan komunitas kami!
DaftarPost Terkait | Replies | Tampilan | Aktivitas | |
---|---|---|---|---|
Showing Date of Next 3 Months From a Date in ODOO
Diselesaikan
|
|
2
Agu 24
|
1498 | |
Is it possible to change the Date formats in Odoo?
Diselesaikan
|
|
1
Nov 23
|
998 | |
|
0
Okt 17
|
4612 | ||
|
4
Mei 23
|
8543 | ||
|
1
Feb 23
|
5121 |