sale_crm/__init__.py

9 lines
284 B
Python
Raw Permalink Normal View History

# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from . import models
from . import wizard
def uninstall_hook(env):
teams = env['crm.team'].search([('use_opportunities', '=', False)])
teams.write({'use_opportunities': True})