콘텐츠로 건너뛰기
메뉴
커뮤니티에 참여하려면 회원 가입을 하시기 바랍니다.
신고된 질문입니다
2 답글
19975 화면

Is possible to order the line in a one2many without to modify the original class order?

아바타
취소

This could be also useful for open a tree view with a particular order by clause... maybe a context parameter like order_by?

Finally, was it possible? Now I have the same question.

베스트 답변

Finally, I found a way to manage this, downloading this module:

https://www.odoo.com/apps/modules/7.0/one2many_sorted/

Then, I overrided the one2many whose order I want to alter, in my case the field was child_ids, and I wanted it to be ordered by email:

'child_ids' : one2many_sorted.one2many_sorted(
    'res.partner',
    'parent_id',
    'Contacts',
    order='email',
)

Note that the only difference between this field and the one2many is the param order (you can use a couple new more though, search and set).

I also imported the library at the top of the file:

import one2many_sorted

Now, I'm seeing the tree and kanban of res.partner ordered by name, but this one2many is ordered by email. Great!

아바타
취소

well done Juan !! :)

베스트 답변

Just  add  attribute default_order  to  tree  view
default_order="date desc"
아바타
취소
관련 게시물 답글 화면 활동
0
3월 15
4951
0
9월 17
11129
1
1월 25
2357
2
4월 24
2122
1
1월 24
2657