mirror of
https://github.com/bringout/oca-technical.git
synced 2026-04-22 23:52:00 +02:00
22 lines
605 B
Python
22 lines
605 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
|
|
|
|
BRAND_USE_LEVEL_NO_USE_LEVEL = "no"
|
|
BRAND_USE_LEVEL_REQUIRED_LEVEL = "required"
|
|
|
|
BRAND_USE_LEVEL_SELECTION = [
|
|
(BRAND_USE_LEVEL_NO_USE_LEVEL, "Do not use brands on business document"),
|
|
("optional", "Optional"),
|
|
(BRAND_USE_LEVEL_REQUIRED_LEVEL, "Required"),
|
|
]
|
|
|
|
|
|
class ResCompany(models.Model):
|
|
_inherit = "res.company"
|
|
|
|
brand_use_level = fields.Selection(
|
|
selection=BRAND_USE_LEVEL_SELECTION,
|
|
default=BRAND_USE_LEVEL_NO_USE_LEVEL,
|
|
)
|