flectra/addons/sales_team/models/res_users.py
flectra-admin 769eafb483 [INIT] Inception of Flectra from Odoo
Flectra is Forked from Odoo v11 commit : (6135e82d73)
2018-01-16 11:45:59 +05:30

23 lines
855 B
Python

# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo import api, fields, models
class ResUsers(models.Model):
_inherit = 'res.users'
sale_team_id = fields.Many2one(
'crm.team', 'Sales Channel',
help='Sales Channel the user is member of. Used to compute the members of a sales channel through the inverse one2many')
@api.model
def create(self, vals):
# Assign the new user in the sales team if there's only one sales team of type `Sales`
user = super(ResUsers, self).create(vals)
if user.has_group('sales_team.group_sale_salesman') and not user.sale_team_id:
teams = self.env['crm.team'].search([('team_type', '=', 'sales')])
if len(teams.ids) == 1:
user.sale_team_id = teams.id
return user