Files
stock-rma/rma_refund_reason/models/rma_operation.py
2023-09-16 17:55:27 +00:00

15 lines
331 B
Python

# Copyright (C) 2023 ForgeFlow S.L.
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
from odoo import fields, models
class RmaOperation(models.Model):
_inherit = "rma.operation"
refund_reason_id = fields.Many2one(
comodel_name="account.move.refund.reason",
string="Refund reason",
)