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.
55 lines
1.6 KiB
55 lines
1.6 KiB
# © 2017 Akretion (Alexis de Lattre <alexis.delattre@akretion.com>)
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
|
|
|
|
from odoo import fields, models
|
|
|
|
|
|
class Agreement(models.Model):
|
|
_name = "agreement"
|
|
_description = "Agreement"
|
|
|
|
code = fields.Char(required=True, copy=False)
|
|
name = fields.Char(required=True)
|
|
partner_id = fields.Many2one(
|
|
"res.partner",
|
|
string="Partner",
|
|
ondelete="restrict",
|
|
domain=[("parent_id", "=", False)],
|
|
)
|
|
company_id = fields.Many2one(
|
|
"res.company",
|
|
string="Company",
|
|
default=lambda self: self.env["res.company"]._company_default_get(),
|
|
)
|
|
is_template = fields.Boolean(
|
|
string="Is a Template?",
|
|
default=False,
|
|
copy=False,
|
|
help="Set if the agreement is a template. "
|
|
"Template agreements don't require a partner.",
|
|
)
|
|
agreement_type_id = fields.Many2one(
|
|
"agreement.type", string="Agreement Type", help="Select the type of agreement"
|
|
)
|
|
active = fields.Boolean(default=True)
|
|
signature_date = fields.Date()
|
|
start_date = fields.Date()
|
|
end_date = fields.Date()
|
|
|
|
def name_get(self):
|
|
res = []
|
|
for agr in self:
|
|
name = agr.name
|
|
if agr.code:
|
|
name = "[{}] {}".format(agr.code, agr.name)
|
|
res.append((agr.id, name))
|
|
return res
|
|
|
|
_sql_constraints = [
|
|
(
|
|
"code_partner_company_unique",
|
|
"unique(code, partner_id, company_id)",
|
|
"This agreement code already exists for this partner!",
|
|
)
|
|
]
|