16 lines
466 B
Python
16 lines
466 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo, Flectra. See LICENSE file for full copyright and licensing details.
|
|
|
|
from . import controllers
|
|
from . import models
|
|
from . import report
|
|
from . import wizard
|
|
|
|
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})
|