Public release from ruodoo-project: 19.0 - 2026-05-10 21:19:01 UTC
This commit is contained in:
13
access_restricted/models/test_config_settings.py
Normal file
13
access_restricted/models/test_config_settings.py
Normal file
@ -0,0 +1,13 @@
|
||||
from odoo import fields, models
|
||||
|
||||
|
||||
class TestConfigSettings(models.TransientModel):
|
||||
|
||||
_description = "Test config settings"
|
||||
_inherit = ["res.config.settings"]
|
||||
|
||||
group_test_access_restricted = fields.Boolean(
|
||||
group="base.group_system",
|
||||
# random group for test purposes
|
||||
implied_group="base.group_multi_currency",
|
||||
)
|
||||
Reference in New Issue
Block a user