You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
65 lines
2.9 KiB
65 lines
2.9 KiB
# -*- coding: utf-8 -*-
|
|
#############################################################################
|
|
#
|
|
# Cybrosys Technologies Pvt. Ltd.
|
|
#
|
|
# Copyright (C) 2023-TODAY Cybrosys Technologies(<https://www.cybrosys.com>)
|
|
# Author: Cybrosys Techno Solutions(<https://www.cybrosys.com>)
|
|
#
|
|
# You can modify it under the terms of the GNU LESSER
|
|
# GENERAL PUBLIC LICENSE (LGPL v3), Version 3.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details.
|
|
#
|
|
# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE
|
|
# (LGPL v3) along with this program.
|
|
# If not, see <http://www.gnu.org/licenses/>.
|
|
#
|
|
#############################################################################
|
|
from odoo import api, fields, models
|
|
|
|
|
|
class HelpTeam(models.Model):
|
|
""" This class represents a Helpdesk Team in the system, providing
|
|
information about the team members, leader, and related project."""
|
|
_name = 'help.team'
|
|
_description = 'Helpdesk Team'
|
|
|
|
name = fields.Char(string='Name', help='Name of the Helpdesk Team. It '
|
|
'identify the helpdesk team')
|
|
team_lead_id = fields.Many2one(
|
|
'res.users',
|
|
string='Team Leader',
|
|
help='Name of the Helpdesk Team Leader.',
|
|
domain=lambda self: [('groups_id', 'in', self.env.ref(
|
|
'odoo_website_helpdesk.helpdesk_team_leader').id)])
|
|
member_ids = fields.Many2many(
|
|
'res.users',
|
|
string='Members',
|
|
help='Users who belong to that Helpdesk Team',
|
|
domain=lambda self: [('groups_id', 'in', self.env.ref(
|
|
'odoo_website_helpdesk.helpdesk_user').id)])
|
|
email = fields.Char(string='Email', help='Email')
|
|
project_id = fields.Many2one('project.project',
|
|
string='Project',
|
|
help='The Project they are currently in')
|
|
create_task = fields.Boolean(string="Create Task",
|
|
help="Enable for allowing team to "
|
|
"create tasks from tickets")
|
|
|
|
@api.onchange('team_lead_id')
|
|
def members_choose(self):
|
|
""" This method is triggered when the Team Leader is changed. It
|
|
updates the available team members based on the selected leader and
|
|
filters out the leader from the list of potential members."""
|
|
fetch_members = self.env['res.users'].search([])
|
|
filtered_members = fetch_members.filtered(
|
|
lambda x: x.id != self.team_lead_id.id)
|
|
return {'domain': {'member_ids': [
|
|
('id', '=', filtered_members.ids),
|
|
('groups_id', 'in', self.env.ref('base.group_user').id),
|
|
('groups_id', 'not in', self.env.ref(
|
|
'odoo_website_helpdesk.helpdesk_team_leader').id)]}}
|
|
|