mirror of
https://github.com/bringout/oca-technical.git
synced 2026-04-22 03:32:04 +02:00
14 lines
369 B
Python
14 lines
369 B
Python
# Copyright 2019 ACSONE SA/NV
|
|
# License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl-3.0).
|
|
|
|
from odoo import fields, models
|
|
|
|
|
|
class ResConfigSetting(models.TransientModel):
|
|
_inherit = "res.config.settings"
|
|
|
|
brand_use_level = fields.Selection(
|
|
string="Brand Use Level",
|
|
related="company_id.brand_use_level",
|
|
readonly=False,
|
|
)
|