跳至内容
菜单
此问题已终结
1 回复
5797 查看

In the manufacturing bill of materials (mrp.bom model) form view, There is a list of components that make up a product. I want to add a button to the list view that opens the product component in a pop up.

I have tried this code but the button is opening the wrong product item. Please help me resolve what I am doing wrong.

class mrp_bom_line(osv.osv):
    _inherit = ['mrp.bom.line']
    def open_full_record(self, cr, uid, ids, context=None):
        return {
            'type': 'ir.actions.act_window',
            'view_type': 'form',
            'view_mode': 'form',
            'res_model': 'product.template',#self._name,
            'res_id': ids[0],
            'target': 'new',
            'context': context,  # May want to modify depending on the source/destination
            }

 

形象
丢弃
最佳答案

use "active_id"

形象
丢弃
编写者

I have specified that but it soesnt seem to work. This is how I added it. data = self.browse(cr, uid, ids[0], context=context) context['active_id'] = data.product_id.id above the return statement.

what is the lite

'res_id': ids[0],
for?

res_id (optional) if the default view is form, specifies the record to load (otherwise a new record should be created)

相关帖文 回复 查看 活动
1
3月 15
4808
0
9月 21
2194
0
1月 22
1895
1
9月 21
3065
3
1月 20
6904