mirror of
https://github.com/OCA/rma.git
synced 2025-02-16 17:11:47 +02:00
13 lines
356 B
Python
13 lines
356 B
Python
# Copyright 2021 Tecnativa - David Vidal
|
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
|
from odoo import fields, models
|
|
|
|
|
|
class ResConfigSettings(models.TransientModel):
|
|
_inherit = "res.config.settings"
|
|
|
|
show_full_page_sale_rma = fields.Boolean(
|
|
related="company_id.show_full_page_sale_rma",
|
|
readonly=False,
|
|
)
|