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

Hi,

I have a tree view, where I select a record. When I select it the window changes to a form to can see and edit this record.

Here I can click a button that opens a tree in the current window (can't use a popup because I need to be able to use filters), when I click a record on this tree I execute a function, and I would like to go back to the previous form view

I'm trying to use this in the function:

return {
                'type': 'ir.actions.act_window',
                'view_type': 'form',
                'view_mode': 'form',
                'res_model': context['active_model'],
                'target': 'current',
                'context': context,
                'domain': [('quot_id','=',context['active_id'])]
            } 

But it doesn't work, I get the following error:

Uncaught TypeError: Cannot read property '1' of undefined

http://localhost:8069/web/static/src/js/view_form.js:3285

And besides, I suspect defining the domain, as in here wouldn't allow me to navigate between records, as this one would be the only one in the domain.

 

아바타
취소
작성자 베스트 답변

Solved using res_id. I don't know why it doesn't appear in OpenERP documentation

return {
                'type': 'ir.actions.act_window',
                'view_type': 'form',
                'view_mode': 'form,tree',
                'res_model': context['active_model'],
                'target': 'current',
                'context': context,
                'res_id': context['active_id'],
                'domain': [('pr_id','=',pl_new.pr_id['id'])],
            } 

The main problem now is that in the header, where it says where I am (history of navigation view) gets longer and longer

Request Project / P4 / Quotations / QN4 / Price List / QN4 / Price List /............. QN4 / Price List / QN4 / Price List / QN4

So I'd really need to be able to go back instead of adding this view. 

 

I'll raise a new question, as I want to leave the res_id solution available.

아바타
취소
관련 게시물 답글 화면 활동
3
1월 24
9508
0
4월 23
1917
1
3월 15
6667
1
3월 24
4115
4
3월 22
5673