mirror of
https://github.com/OCA/contract.git
synced 2025-02-13 17:57:24 +02:00
9 lines
210 B
Python
9 lines
210 B
Python
from odoo import models, fields
|
|
|
|
#Main Agreement Status Records Model
|
|
class AgreementStatus(models.Model):
|
|
_name = 'partner_agreement.type'
|
|
|
|
#General
|
|
name = fields.Char(string="Title", required=True)
|