3

目前,您可以将 OpenERP 的返回值设置为以下值,以获取要关闭的当前表单:

return {'type':'ir.actions.act_window_close' }

是否有一个返回值可以打开另一个表单?例如,在产品表单中,按钮可以调用销售表单或向导表单。

4

2 回答 2

7

以下是一个示例函数。也许对你有帮助

def open_popup(self, cr, uid, ids, context=None):
    mod_obj = self.pool.get('ir.model.data')
    if move.parent_production_id:
        res = mod_obj.get_object_reference(cr, uid, 'module_name', 'id_specified_for_the_view')
        return {
            'name': 'Provide your popup window name',
            'view_type': 'form',
            'view_mode': 'form',
            'view_id': [res and res[1] or False],
            'res_model': 'your.popup.model.name',
            'context': "{}",
            'type': 'ir.actions.act_window',
            'nodestroy': True,
            'target': 'new',
            'res_id': record_id  or False,##please replace record_id and provide the id of the record to be opened 
        }
于 2012-09-28T05:47:47.863 回答
2

有一个函数可以为您提供给定 xml_id 的 act_window。

def open_popup(self, cr, uid, ids, context=None):
    if move.parent_production_id:
        win_obj = self.pool.get('ir.actions.act_window')
        res = win_obj.for_xml_id(cr, uid, 'module_name', 'id_specified_for_the_view', context)
        return res
于 2013-09-04T21:18:51.437 回答