mirror of
https://github.com/OCA/rma.git
synced 2025-02-16 17:11:47 +02:00
15 lines
473 B
Python
15 lines
473 B
Python
# Copyright 2022 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"
|
|
|
|
rma_delivery_strategy = fields.Selection(
|
|
related="company_id.rma_delivery_strategy", readonly=False,
|
|
)
|
|
rma_fixed_delivery_method = fields.Many2one(
|
|
related="company_id.rma_fixed_delivery_method", readonly=False,
|
|
)
|