769eafb483
Flectra is Forked from Odoo v11 commit : (6135e82d73
)
27 lines
978 B
Python
27 lines
978 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
from odoo import api, models
|
|
|
|
|
|
class PlannerCrm(models.Model):
|
|
|
|
_inherit = 'web.planner'
|
|
|
|
@api.model
|
|
def _get_planner_application(self):
|
|
planner = super(PlannerCrm, self)._get_planner_application()
|
|
planner.append(['planner_crm', 'CRM Planner'])
|
|
return planner
|
|
|
|
@api.model
|
|
def _prepare_planner_crm_data(self):
|
|
menu = self.env.ref('crm.menu_crm_opportunities', raise_if_not_found=False)
|
|
# sudo is needed to avoid error message when current user's company != sale_department company
|
|
sales_team = self.sudo().env.ref('sales_team.team_sales_department', raise_if_not_found=False)
|
|
return {
|
|
'alias_domain': sales_team and sales_team.alias_domain or False,
|
|
'alias_name': sales_team and sales_team.alias_name or False,
|
|
'pipeline_menu_id': menu and menu.id or False
|
|
}
|