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

I have 3 models representing 3 levels of data but when viewing these models it has to be one view 

models are "Group Match", "Match" and "Match Details", group match is like a small league which has number of matches and each match has its details, group match and match has to be form views not tree in form

So I need to view all of these 3 models in one view (may be nested view)

note: group match has field one2many to match and match has one2many field to match details

아바타
취소

use ir.actions.client to show any values in single view

https://www.odoo.com/documentation/9.0/howtos/web.html#exercise

베스트 답변

Hi Mohamed,

I don't think this is a good idea to concept you solution like that as by default you can open form view wizard from one2many relations.

But you may need this for some specific reasons, so I propose to do it using related fields.

In your model "Match Details" create related fields to the model "Match" and "Group Match".

class match_details(models.Model)    
    _name="match"
    [..]
    group_id = fields.Many2one('match.group')
    field_from_match = fields.Char()

class match_details(models.Model)
    _name="match"
    [..]
    group_id = fields.Many2one('match.group')
    field_from_match_group = fields.Char()

class match_details(models.Model)
    _name="match.details"
      [..]
    match_id = fields.Many2one('match')
    field_from_match = fields.Char(related="match_id.field_from_match")
    field_from_match_group = fields.Char(related="match_id.group_id.field_from_match_group")

When you create a form view for "Match Details", you can edit the two other models using this related fields.

Hope this help you.

best regards.

아바타
취소
관련 게시물 답글 화면 활동
0
9월 21
2334
2
11월 17
9230
V17 Tree, Form view 해결 완료
1
3월 25
1298
5
8월 24
46768
2
4월 24
2603