mirror of
https://github.com/OCA/contract.git
synced 2025-02-13 17:57:24 +02:00
8 lines
191 B
Python
8 lines
191 B
Python
from odoo import models, fields, api
|
|
|
|
class Partner(models.Model):
|
|
|
|
_inherit = 'res.partner'
|
|
|
|
agreements = fields.One2many('partner_agreement.agreement', 'name', string="Agreements")
|