mensajes.py 234 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 from odoo import api, fields, models class mensajes(models.Model): _name = 'trans.mensajes' _description = 'SMS/MAIL textos' name = fields.Char(string='Codigo') texto = fields.Char(string='Texto')