我想在消息框中显示' text','是'和'不'按钮。如果用户点击“是”',则继续方法工作。
如何在Python的Odoo中添加此警告消息框?
如果您有任何想法,请与我分享。
感谢。
答案 0 :(得分:3)
如果您希望通过按钮进行操作,则可以在xml中使用confirm
属性。
<button name="cancel_voucher" string="Cancel Voucher" type="object" states="posted" confirm="Are you sure you want to unreconcile this record?"/>
答案 1 :(得分:0)
你可以做一件事。使用按钮调用表单视图(type =“action”)。在表单视图页脚中,按住您的按钮。单击按钮后,执行所需的操作。
注意:您的表单视图模型应该不同。不应该与当前视图相同。