Skip to Content
เมนู
คุณต้องลงทะเบียนเพื่อโต้ตอบกับคอมมูนิตี้
คำถามนี้ถูกตั้งค่าสถานะ
1 ตอบกลับ
5891 มุมมอง

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)

Related Posts ตอบกลับ มุมมอง กิจกรรม
1
มี.ค. 15
4966
0
ก.ย. 21
2372
0
ม.ค. 22
2059
1
ก.ย. 21
3184
3
ม.ค. 20
7031