Method return value to call another form in OpenERP

前端 未结 2 1500
孤街浪徒
孤街浪徒 2021-01-03 09:38

Currently, you can set to return value of an OpenERP to the following, to get the current form to be closed:

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


        
2条回答
  •  日久生厌
    2021-01-03 10:21

    There is a function that gives you the act_window for a given xml_id.

    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
    

提交回复
热议问题