mirror of
https://gitlab.com/hibou-io/hibou-odoo/suite.git
synced 2025-01-20 12:37:31 +02:00
14 lines
431 B
Python
14 lines
431 B
Python
# Part of Hibou Suite Professional. See LICENSE_PROFESSIONAL file for full copyright and licensing details.
|
|
|
|
from odoo import fields, models
|
|
|
|
|
|
class AccountMove(models.Model):
|
|
_inherit = 'account.move'
|
|
|
|
rma_ids = fields.Many2many('rma.rma',
|
|
'rma_invoice_rel',
|
|
'invoice_id',
|
|
'rma_id',
|
|
string='RMAs')
|