15 lines
500 B
Python
15 lines
500 B
Python
# Copyright 2004-2011 Pexego Sistemas Informáticos. (http://pexego.es)
|
|
# Copyright 2016 Antonio Espinosa <antonio.espinosa@tecnativa.com>
|
|
# Copyright 2014-2022 Pedro M. Baeza <pedro.baeza@tecnativa.com>
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
|
|
from odoo import fields, models
|
|
|
|
|
|
class AccountMove(models.Model):
|
|
_inherit = "account.move"
|
|
|
|
refund_invoice_ids = fields.One2many(
|
|
"account.move", "reversed_entry_id", string="Refund Invoices", readonly=True
|
|
)
|