Odoo18-Base/addons/base_install_request/__init__.py
2025-03-10 11:12:23 +07:00

23 lines
660 B
Python

# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from . import models
from . import wizard
from odoo import api, tools, SUPERUSER_ID
def _auto_install_apps(cr, registry):
if not tools.config.get('default_productivity_apps', False):
return
env = api.Environment(cr, SUPERUSER_ID, {})
env['ir.module.module'].sudo().search([
('name', 'in', [
# Community
'hr', 'mass_mailing', 'project', 'survey',
# Enterprise
'appointment', 'knowledge', 'planning', 'sign',
]),
('state', '=', 'uninstalled')
]).button_install()