mirror of
https://github.com/bringout/oca-technical.git
synced 2026-04-22 23:52:00 +02:00
16 lines
413 B
Python
16 lines
413 B
Python
# Copyright 2024 Raumschmiede GmbH
|
|
# Copyright 2024 BCIM
|
|
# Copyright 2024 ACSONE SA/NV
|
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
|
|
|
from odoo import fields, models
|
|
|
|
|
|
class ResCompany(models.Model):
|
|
|
|
_inherit = "res.company"
|
|
|
|
is_rma_reason_required = fields.Boolean(
|
|
string="Indicates whether specifying an RMA reason is mandatory when creating "
|
|
"an RMA order."
|
|
)
|