在制造物料清单(mrp.bom model)表单视图中,有一个组成产品的组件列表。我想在列表视图中添加一个按钮,在弹出窗口中打开产品组件。
我已尝试过此代码,但按钮正在打开错误的产品项目。请帮我解决我做错的事。
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
}
答案 0 :(得分:2)
这里ids [0]会给你bom行的id,而在bom行中有product.product的引用而不是product.template。
所以如果你想打开一个产品,你需要写一个像
这样的方法def open_product(self, cr, uid, ids, context=None):
rec = self.browse(cr, uid, ids[0], context)
return {
'type': 'ir.actions.act_window',
'view_type': 'form',
'view_mode': 'form',
'res_model': 'product.product',
'res_id': rec.product_id.id,
'target': 'new',
'context': context,
}
答案 1 :(得分:0)
这里你传递的res_id是错误的。它应该是product.template记录的id