[MOV] rma: from Hibou Suite Enterprise for 13.0

This commit is contained in:
Jared Kipe
2020-07-03 08:53:24 -07:00
parent 852330625c
commit d43d0330b3
24 changed files with 1936 additions and 0 deletions

13
rma/models/account.py Normal file
View File

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