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