[IMP] Models and views

This commit is contained in:
Maxime Chambreuil
2018-10-22 14:29:22 -05:00
parent fe8aeb1741
commit 7587d07323
6 changed files with 127 additions and 71 deletions

View File

@@ -0,0 +1,10 @@
# 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')