2018-01-16 06:58:15 +01:00
|
|
|
# -*- coding: utf-8 -*-
|
2018-01-16 11:34:37 +01:00
|
|
|
# Part of Odoo, Flectra. See LICENSE file for full copyright and licensing details.
|
2018-01-16 06:58:15 +01:00
|
|
|
|
|
|
|
from . import controllers
|
|
|
|
from . import models
|
|
|
|
from . import report
|
|
|
|
from . import wizard
|
2018-07-06 13:13:48 +02:00
|
|
|
|
|
|
|
from flectra import api, SUPERUSER_ID
|
|
|
|
|
|
|
|
|
|
|
|
def uninstall_hook(cr, registry):
|
|
|
|
env = api.Environment(cr, SUPERUSER_ID, {})
|
|
|
|
teams = env['crm.team'].search([('dashboard_graph_model', '=', 'crm.opportunity.report')])
|
|
|
|
teams.update({'dashboard_graph_model': None})
|