11 lines
352 B
Python
11 lines
352 B
Python
# Copyright (C) 2019 Open Source Integrators
|
|
# Copyright (C) 2019 Serpent Consulting Services Pvt. Ltd.
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
from odoo import fields, models
|
|
|
|
|
|
class AccountMove(models.Model):
|
|
_inherit = "account.move"
|
|
|
|
reason_id = fields.Many2one("account.move.refund.reason", string="Refund Reason")
|