تخطي للذهاب إلى المحتوى
القائمة
لقد تم الإبلاغ عن هذا السؤال
1 الرد
18239 أدوات العرض

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
يناير 24
9513
0
أبريل 23
1921
1
مارس 15
6669
1
مارس 24
4119
4
مارس 22
5677