跳至內容
選單
此問題已被標幟
1 回覆
4433 瀏覽次數

I want to open pop up(wizard) by select specify item from selection 

but the @onchange function can't return 

The example:

@api.onchange('m')

    def _onchange_m(self):

             return {

                'type': 'ir.actions.act_window',

                'name': _('Reporting'),

                'res_model': 'hr.m',

                'view_type': 'form',

                'view_mode': 'form',

                'target': 'new',

            }

Someone have an idea how to do it?

頭像
捨棄
最佳答案

The onchange method is meant to only populate other fields on the form when a value changes. To return a pop up you could use @api.constrains, which will run on record save, or put in additional logic on an existing method to return your pop up.

頭像
捨棄
相關帖文 回覆 瀏覽次數 活動
2
5月 24
1705
1
3月 21
4315
0
5月 25
3856
2
2月 23
4372
1
1月 23
2406