mirror of
https://github.com/bringout/oca-ocb-sale.git
synced 2026-04-26 02:32:00 +02:00
9 lines
No EOL
284 B
Python
9 lines
No EOL
284 B
Python
# -*- 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}) |