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

Hello,

I'm trying to display a form view of a model returned by an action in a menu and display another form view of the same model in a different context ( by clicking on a button) but I'm getting the two different views displayed side by side.

First, I have tried inheriting the first view and used different priorities in, but I was always getting the inherited view displayed even if it has the highest priority.

Second, I have defined different form views of the same model without any inheriting, but I was getting views displayed one over the other.

I need help to display one of the "form" views, each in its appropriate context

아바타
취소
베스트 답변

You can create two separate view and use 1 view for menu with highest priority and

In button return action with form view id as below :

{
'type'
: 'ir.actions.act_window',
'name'
: _('Action Name'),
'res_model'
: 'model name',
'view_mode'
: 'tree, form',
'res_id'
: id of record,     
    'context': context,        
    'views':[(self.env.ref('id of second view').id, 'form')],
}


아바타
취소
관련 게시물 답글 화면 활동
2
8월 22
5100
2
3월 23
13458
2
2월 23
1513
2
9월 15
5100
1
3월 15
3313