You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
634 B

  1. # Copyright (C) 2018 - TODAY, Pavlov Media
  2. # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
  3. from odoo import fields, models
  4. # Main Agreement Section Records Model
  5. class AgreementRenewalType(models.Model):
  6. _name = "agreement.renewaltype"
  7. _description = "Agreement Renewal Type"
  8. # General
  9. name = fields.Char(
  10. string="Title",
  11. required=True,
  12. help="Renewal types describe what happens after the "
  13. "agreement/contract expires.",
  14. )
  15. description = fields.Text(
  16. string="Description",
  17. required=True,
  18. help="Description of the renewal type."
  19. )