Files
contract/agreement/models/account.py
2018-10-22 14:29:22 -05:00

11 lines
302 B
Python

# Copyright (C) 2018 - TODAY, Open Source Integrators
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
from odoo import fields, models
class AccountAnalyticLine(models.Model):
_inherit = 'account.analytic.line'
agreement_id = fields.Many2one('agreement', string='Agreement')