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
683 B
23 lines
683 B
# -*- coding: utf-8 -*-
|
|
# Copyright 2017 LasLabs Inc.
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
|
|
|
from odoo import api, fields, models
|
|
|
|
|
|
class ProductTemplate(models.Model):
|
|
_inherit = 'product.template'
|
|
|
|
is_contract = fields.Boolean('Is a contract')
|
|
contract_template_id = fields.Many2one(
|
|
comodel_name='account.analytic.contract',
|
|
string='Contract Template',
|
|
)
|
|
|
|
@api.onchange('is_contract')
|
|
def _change_is_contract(self):
|
|
""" Clear the relation to contract_template_id when downgrading
|
|
product from contract
|
|
"""
|
|
if not self.is_contract:
|
|
self.contract_template_id = False
|