Files
stock-rma/rma_refund_reason/models/rma_operation.py
2024-05-08 14:52:29 +05:30

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",
)