Skip to content

Instantly share code, notes, and snippets.

@sehrishnaz
Created October 6, 2021 07:55
Display Confirmation Message Dialog Box on Button Click in Odoo
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()
@sehrishnaz
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment