Skip to Content
Odoo Меню
  • Увійти
  • Спробуйте це безкоштовно
  • Додатки
    Фінанси
    • Бухоблік
    • Виставлення рахунку
    • Витрати
    • Електронні таблиці (BI)
    • Документи
    • Підпис
    Продажі
    • CRM
    • Продажі
    • POS Магазин
    • POS Ресторан
    • Підписки
    • Оренда
    Веб-сайти
    • Конструктор веб-сайту
    • Електронна комерція
    • Блог
    • Форум
    • Живий чат
    • Електронне навчання
    Ланцюг поставок
    • Склад
    • Виробництво
    • PLM
    • Купівлі
    • Технічне обслуговування
    • Якість
    Кадри
    • Співробітники
    • Рекрутинг
    • Відпустки
    • Оцінювання
    • Рекомендації
    • Автотранспорт
    Маркетинг
    • Маркетинг соцмереж
    • Email-маркетинг
    • SMS-маркетинг
    • Події
    • Автом. маркетингу
    • Опитування
    Послуги
    • Проект
    • Табелі
    • Виїзне обслуговування
    • Служба підтримки
    • Планування
    • Призначення
    Продуктивність
    • Обговорення
    • Схвалення
    • IoT
    • IP-телефонія
    • База знань
    • WhatsApp
    Сторонні модулі Odoo Studio Платформа Odoo Cloud
  • Сфери
    Роздрібна торгівля
    • Книжковий магазин
    • Магазин одягу
    • Магазин меблів
    • Продуктовий магазин
    • Магазин будівельних матеріалів
    • Магазин іграшок
    Food & Hospitality
    • Бар та паб
    • Ресторан
    • Фастфуд
    • Guest House
    • Дистриб'ютор напоїв
    • Hotel
    Нерухомість
    • Real Estate Agency
    • Архітектурна фірма
    • Будівництво
    • Управління нерухомістю
    • Садівництво
    • Асоціація власників нерухомості
    Консалтинг
    • Бухгалтерська компанія
    • Партнер Odoo
    • Агенція маркетингу
    • Юридична фірма
    • Придбання Талантів
    • Аудит та сертифікація
    Виробництво
    • Textile
    • Metal
    • Меблі
    • Їжа
    • Brewery
    • Корпоративні подарунки
    Здоров'я & Фітнес
    • Спортивний клуб
    • Оптика
    • Фітнес-центр
    • Практики здоров'я
    • Аптека
    • Салон краси
    Trades
    • Ремонтник
    • IT-обладнання та Підтримка
    • Системи сонячної енергії
    • Shoe Maker
    • Cleaning Services
    • HVAC Services
    Інші
    • Nonprofit Organization
    • Екологічна агенція
    • Оренда білбордів
    • Фотографія
    • Лізинг велосипедів
    • Реселлер програмного забезпечення
    Browse all Industries
  • Спільнота
    Навчання
    • Навчальний посібник
    • Документація
    • Сертифікації
    • Тренування
    • Блог
    • Подкаст
    Сприяйте Освіті
    • Програма навчання
    • Бізнес гра Scale Up!
    • Відвідайте Odoo
    Отримайте програмне забезпечення
    • Завантаження
    • Порівняйте версії
    • Релізи
    Співпрацюйте
    • Github
    • Форум
    • Події
    • Переклади
    • Стати партнером
    • Services for Partners
    • Зареєструйте вашу бухгалтерську фірму
    Отримайте послуги
    • Знайдіть партнера
    • Знайдіть бухгалтера
    • Зустріньтеся з консультантом
    • Послуги з впровадження
    • Референси клієнтів
    • Підтримка
    • Оновлення
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Отримати демо
  • Ціни
  • Допомога

Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:

  • CRM
  • e-Commerce
  • Бухоблік
  • Склад
  • PoS
  • Проект
  • MRP
All apps
Вам необхідно зареєструватися, щоб взаємодіяти зі спільнотою.
All Posts Люди Значки
Мітки (View all)
odoo accounting v14 pos v15
Про цей форум
Вам необхідно зареєструватися, щоб взаємодіяти зі спільнотою.
All Posts Люди Значки
Мітки (View all)
odoo accounting v14 pos v15
Про цей форум
Допомога

How to programmatically configure general settings (base.config.settings) in Odoo 10

Підписатися

Отримуйте сповіщення про активність щодо цієї публікації

Це запитання позначене
settingspythonmoduleodoo10odoo10.0
4 Відповіді
25398 Переглядів
Аватар
Creative Emergy Inc.

My goal is to have a module do the setup at install: loading dependencies, and settings configuration parameters. The idea is to keep everything in the code (if possible), to have all the information in the same place. In my dream, I'd love to have all the parameters in a key-value based file in my module.

I managed to successfully set parameters in res.company and website (e.g. changing the default favicon), but I have a hard time accessing the parameters in base.config.settings, as it apparently deals with transient models (or is there another way?). My readings lead me to try things like this:

  1. create an object from the transient model with the required values set

  2. call execute() on it

I tried the code below in a module (with the companion view).

class ResBaseConfigSettings(models.TransientModel):
    _inherit = "base.config.settings"
    @api.model 
    def set_signup_parameters(self):
        _logger.info("> Settings sign-up parameters")
        _logger.info(self)
        settings = self.env['base.config.settings'].create({
            'auth_signup_uninvited': True,
            'auth_signup_reset_password': True,
        })
        settings.execute()
        _logger.info("> ... done.")

Here is the view (set_config_parameters.xml):

<odoo>
  <data noupdate="1">
            <function model="base.config.settings" name="set_signup_parameters"/>
  </data>
</odoo>

Unfortunately, when I execute the code (by installing the module) an infinite loop is created, and I can't figure out why. 

2017-08-08 06:04:14,308 4649 INFO TFBN01A odoo.modules.loading: loading tfbn_enhancements/views/set_config_parameters.xml
2017-08-08 06:04:14,452 4649 INFO TFBN01A odoo.addons.tfbn_enhancements.models.models: > Settings sign-up parameters
2017-08-08 06:04:14,452 4649 INFO TFBN01A odoo.addons.tfbn_enhancements.models.models: base.config.settings()
2017-08-08 06:04:15,744 4649 INFO TFBN01A odoo.addons.tfbn_enhancements.models.models: > Settings sign-up parameters
2017-08-08 06:04:15,744 4649 INFO TFBN01A odoo.addons.tfbn_enhancements.models.models: base.config.settings(1,)
2017-08-08 06:04:16,929 4649 INFO TFBN01A odoo.addons.tfbn_enhancements.models.models: > Settings sign-up parameters
2017-08-08 06:04:16,929 4649 INFO TFBN01A odoo.addons.tfbn_enhancements.models.models: base.config.settings(2,)
2017-08-08 06:04:18,162 4649 INFO TFBN01A odoo.addons.tfbn_enhancements.models.models: > Settings sign-up parameters
2017-08-08 06:04:18,162 4649 INFO TFBN01A odoo.addons.tfbn_enhancements.models.models: base.config.settings(3,)
(...)

Also, when I'm trying to execute this in the console, it seems to work ok. At least, there is no sign of infinite loop. 

>>> c = self.env['base.config.settings'].create({'auth_signup_uninvited': True,'auth_signup_reset_password': True,})
>>> c
base.config.settings(1,)
>>> c.execute()
2017-08-08 06:45:38,182 9929 INFO TFBN01A odoo.addons.base.res.res_config: getting next operation 2017-08-08 06:45:38,183 9929 INFO TFBN01A odoo.addons.base.res.res_config: getting next ir.actions.todo()
2017-08-08 06:45:38,188 9929 INFO TFBN01A odoo.addons.base.res.res_config: next action is None
{'url': '/web', 'type': 'ir.actions.act_url', 'target': 'self'}

I'm also wondering where those settings are stored in the database (in ir_config_parameter?), and the proper way to store these permanently.

What am I missing? Thanks for the help.




3
Аватар
Відмінити
Аватар
Creative Emergy Inc.
Автор Найкраща відповідь

Update: there are two possible ways to achieve the same result (i.e. getting two boolean fields checked).

OPTION 1) Using Python code

About the issues described above, and for the record:

  • the infinite loop comes for the fact the above code did not implement the right type of inheritance (it did implement class inheritance instead of the desired prototype inheritance). The fix is to add a _name attribute (different from _inherit). See https://www.odoo.com/documentation/10.0/howtos/backend.html#inheritance

  • the view needs to be fixed accordingly

See the revised code:


class ResBaseConfigSettings(models.TransientModel):
    _name = "my.config.settings" # that's prototype inheritance (vs. class inheritance if omitted)
                                   # see https://www.odoo.com/documentation/10.0/howtos/backend.html#inheritance
    _inherit = "res.config.settings"
    @api.model 
    def set_signup_parameters(self):
        _logger.info("> Settings sign-up parameters")
        settings = self.env['res.config.settings'].create({
            'auth_signup_uninvited': True,
            'auth_signup_reset_password': True,
        })
        settings.execute()
        _logger.info("> ... done.")

and the view reflecting the new model _name:

<odoo>
  <data noupdate="1">
            <function model="my.config.settings" name="set_signup_parameters"/>
  </data>
</odoo>


OPTION 2) Entirely in a view with a record and a function node

Just make sure your module is called "my_app" or remove the "my_app." part from the id and ref below.

<!-- Another way to set up the signup parameters vs. the record, then the function (in that order) below
           See https://www.odoo.com/forum/help-1/question/how-to-update-a-module-s-config-settings-from-another-module-28230
-->
      <record model="base.config.settings" id="my_app.signup_settings">
        <field name="auth_signup_uninvited" eval="1"/>  
        <field name="auth_signup_reset_password" eval="1"/> 
      </record>
      <function model="base.config.settings" name="execute">
        <!-- ids = --> <value eval="[ref('my_app.signup_settings')]"/>
        <!-- context = --> <value eval="{}"/>
      </function>



4
Аватар
Відмінити
Аватар
Maxime Chambreuil
Найкраща відповідь

Hello Marc,

The configuration panels are views to trigger different actions in the background when you click on "Apply". It installs modules, adds users to groups or set a default values. You can reproduce those same actions using the dependencies of your module to install other modules or from an XML file in your module to update groups or set the value of the defaults.

1
Аватар
Відмінити
Аватар
Jacob Neubaum
Найкраща відповідь

Updated for v16

I was trying to figure out how to do this completely from the odoo shell and was able to solve with the following code:

newSettings = env['res.config.settings'].create({})
newSettings.update({'auth_signup_uninvited' : True})
newSettings.execute()
env.cr.commit()

0
Аватар
Відмінити
Аватар
Ray Carnes (ray)
Найкраща відповідь

Updated for v15:


# get access to the configuration model
ResConfig = env["res.config.settings"].create({}).execute()

# get a copy of the default values
default_values = ResConfig.default_get(list(ResConfig.fields_get()))

# update the default values = "Operations --> Warnings"
default_values.update({"group_warning_stock": True})

# save

ResConfig.create(default_values).execute()

0
Аватар
Відмінити
Enjoying the discussion? Don't just read, join in!

Create an account today to enjoy exclusive features and engage with our awesome community!

Реєстрація
Related Posts Відповіді Переглядів Дія
Make tabular under <page>. Notebook doesnt work
python odoo10 odoo10.0
Аватар
Аватар
2
січ. 18
4159
Set Default Country Вирішено
python python2.7 odoo10 odoo10.0
Аватар
Аватар
2
черв. 20
14598
Can't import a model in odoo view Вирішено
python module models odoo10.0
Аватар
Аватар
Аватар
Аватар
Аватар
7
лип. 19
43126
odoo 10: How to search and get the partner details in a field by using the phone number? Вирішено
python module models odoo odoo10.0
Аватар
Аватар
Аватар
2
серп. 18
12566
Error when creat new patient of Medical Odoo 10
python xml erp odoo10 odoo10.0
Аватар
Аватар
Аватар
6
бер. 18
5260
Спільнота
  • Навчальний посібник
  • Документація
  • Форум
Open Source
  • Завантаження
  • Github
  • Runbot
  • Переклади
Послуги
  • Хостинг Odoo.sh
  • Підтримка
  • Оновлення
  • Кастомні доробки
  • Навчання
  • Знайдіть бухгалтера
  • Знайдіть партнера
  • Стати партнером
Про нас
  • Наша компанія
  • Торгові активи
  • Зв'яжіться з нами
  • Вакансії
  • Події
  • Подкаст
  • Блог
  • Клієнти
  • Юридичні документи • Конфіденційність
  • Безпека
الْعَرَبيّة Català 简体中文 繁體中文 (台灣) Čeština Dansk Nederlands English Suomi Français Deutsch हिंदी Bahasa Indonesia Italiano 日本語 한국어 (KR) Lietuvių kalba Język polski Português (BR) română русский язык Slovenský jazyk slovenščina Español (América Latina) Español ภาษาไทย Türkçe українська Tiếng Việt

Odoo - це набір програм для роботи з відкритим кодом, які охоплюють всі ваші потреби компанії: CRM, електронна комерція, бухгалтерський облік, склад, точка продажу, управління проектами тощо.

Унікальна пропозиція Odoo - це одночасно дуже проста у використанні та повністю інтегрована.

Website made with

Odoo Experience on YouTube

1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.

Live support on Youtube
Watch now