mirror of
https://github.com/OCA/contract.git
synced 2025-02-13 17:57:24 +02:00
we move the is_template field definition and the agreement.type model from the agreement_legal module to the agreement module. The fields are not displayed by default, unless the feature is enabled through a technical feature group, this is configurable in the agreement_sale module (because agreement in itself has no UI, and agreement_legal enables the feature by default)
21 lines
762 B
Python
21 lines
762 B
Python
# © 2017 Akretion (Alexis de Lattre <alexis.delattre@akretion.com>)
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
|
|
|
|
from odoo import models, fields
|
|
|
|
|
|
class SaleOrder(models.Model):
|
|
_inherit = 'sale.order'
|
|
|
|
agreement_id = fields.Many2one(
|
|
comodel_name='agreement', string='Agreement', ondelete='restrict',
|
|
track_visibility='onchange', readonly=True, copy=False,
|
|
states={'draft': [('readonly', False)], 'sent': [('readonly', False)]})
|
|
|
|
agreement_type_id = fields.Many2one(
|
|
comodel_name="agreement.type", string="Agreement Type",
|
|
ondelete="restrict",
|
|
track_visibility='onchange', readonly=True, copy=True,
|
|
states={'draft': [('readonly', False)], 'sent': [('readonly', False)]})
|