Files
pms/pms/models/pms_automated_mails.py
2022-09-06 11:12:53 +02:00

10 lines
262 B
Python

from odoo import fields, models
class PmsAutomatedMails(models.Model):
_name = "pms.automated.mails"
_description = "Automatic Mails"
# TODO: Model to delete
name = fields.Char(string="Name", help="Name of the automated mail.", required=True)