1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from . import models
from . import wizard
from odoo import tools
def _auto_install_apps(env):
if not tools.config.get('default_productivity_apps', False):
return
env['ir.module.module'].sudo().search([
('name', 'in', [
# Community
'hr', 'mass_mailing', 'project', 'survey',
# Enterprise
'appointment', 'knowledge', 'planning', 'sign',
]),
('state', '=', 'uninstalled')
]).button_install()
|