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

Hello,

I use odoo 8, i have a wizard and a product_id filed in this wizard, i want to to close wizard on onchange function for product_id field.

Thanks

頭像
捨棄

return {'type': 'ir.actions.act_window_close'} this actually closes the wizard

Did you find the solution for this?

作者 最佳答案

Thansk, but it only work when you click on a button but not with onchange on a filed

頭像
捨棄
最佳答案

@api.onchange('product_id')
def onchange_product_id(self):
    if self.product_id:
        return {'type': 'ir.actions.act_window_close'}

頭像
捨棄
相關帖文 回覆 瀏覽次數 活動
1
12月 22
3426
3
11月 23
32569
2
12月 23
17762
6
4月 18
21483
5
12月 23
18330