Public release from ruodoo-project: 19.0 - 2026-05-31 21:19:12 UTC

This commit is contained in:
CI Publish Bot
2026-05-31 21:19:21 +00:00
commit aa4214c195
1213 changed files with 183945 additions and 0 deletions

View File

@ -0,0 +1,10 @@
def post_init_hook(env):
admin_user = env.ref('base.user_admin')
lang = 'ru_RU'
# Убедись, что язык ru_RU загружен
lang_obj = env['res.lang'].search([('code', '=', lang)], limit=1)
if not lang_obj:
lang_obj = env['res.lang'].load_lang(lang)
admin_user.write({'lang': lang})

View File

@ -0,0 +1,25 @@
# License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl.html).
{
"name": "Базовый модуль для автоматическое установки необходимых модулей",
"author": "MK.Lab",
"website": "https://inf-centre.ru/",
"version": "17.0.1.0.0",
"depends": [
"account_bank_statement_1c_import",
"base_tier_validation",
"base_user_role",
"l10n_ru_doc",
"l10n_ru_act_rev",
"l10n_ru_advance_payments",
"l10n_ru_attorney",
"l10n_ru_contract",
"l10n_ru_upd_xml",
"translation_helper",
"crm",
"project",
"point_of_sale"
],
'post_init_hook': 'post_init_hook',
"license": "LGPL-3",
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB