Skip to Content
เมนู
คุณต้องลงทะเบียนเพื่อโต้ตอบกับคอมมูนิตี้
คำถามนี้ถูกตั้งค่าสถานะ
2 ตอบกลับ
17892 มุมมอง

I was wondering if there is a way to set the order_by for a specific tree view in the xml code.  Is there a way to do this?

อวตาร
ละทิ้ง
คำตอบที่ดีที่สุด

There is a default_order attribute

https://www.odoo.com/documentation/8.0/reference/views.html#lists

อวตาร
ละทิ้ง
คำตอบที่ดีที่สุด

You can do this in your module's action code (or inherit an already existing action). 

Set it in the context with 'order'.  To order it by the Status field for instance (which is 'state' in the database):

 <record id="action_unique_identifier" model="ir.actions.act_window">
             <!-- a bunch of fields -->
            <field name="context">{'order': 'state'}</field>

 

อวตาร
ละทิ้ง
Related Posts ตอบกลับ มุมมอง กิจกรรม
2
พ.ค. 18
4231
6
ก.ย. 17
8269
0
มิ.ย. 15
3861
3
มิ.ย. 15
8001
1
มี.ค. 15
4480