mirror of
https://github.com/OCA/rma.git
synced 2025-02-16 17:11:47 +02:00
12 lines
294 B
Python
12 lines
294 B
Python
# -*- coding: utf-8 -*-
|
|
# © 2016 Cyril Gaudin (Camptocamp)
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
|
|
|
from openerp import fields, models
|
|
|
|
|
|
class ProcurementGroup(models.Model):
|
|
_inherit = 'procurement.group'
|
|
|
|
claim_id = fields.Many2one('crm.claim', 'Claim')
|