Created
October 6, 2021 07:55
Display Confirmation Message Dialog Box on Button Click in Odoo
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from openerp.osv import fields,osv | |
from openerp.tools.translate import _ | |
class display_dialog_box(osv.osv_memory): | |
_name = "display.dialog.box" | |
_columns={ | |
'text': fields.text(), | |
} | |
display_dialog_box() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Display Confirmation Message Dialog Box on Button Click in Odoo