コンテンツへスキップ
メニュー
この質問にフラグが付けられました
1 返信
5899 ビュー

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
4977
0
9月 21
2377
0
1月 22
2062
1
9月 21
3191
3
1月 20
7033