2018-01-16 11:28:15 +05:30
|
|
|
# -*- coding: utf-8 -*-
|
2018-01-16 02:34:37 -08:00
|
|
|
# Part of Odoo, Flectra. See LICENSE file for full copyright and licensing details.
|
2018-01-16 11:28:15 +05:30
|
|
|
|
|
|
|
from . import controllers
|
|
|
|
from . import models
|
|
|
|
from . import report
|
|
|
|
from . import wizard
|
2018-07-06 16:43:48 +05:30
|
|
|
|
|
|
|
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})
|