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.
74 lines
2.9 KiB
74 lines
2.9 KiB
# -*- coding: utf-8 -*-
|
|
###############################################################################
|
|
#
|
|
# Cybrosys Technologies Pvt. Ltd.
|
|
#
|
|
# Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>)
|
|
# Author: Cybrosys Techno Solutions (odoo@cybrosys.com)
|
|
#
|
|
# You can modify it under the terms of the GNU AFFERO
|
|
# GENERAL PUBLIC LICENSE (AGPL 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 AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details.
|
|
#
|
|
# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE
|
|
# (AGPL v3) along with this program.
|
|
# If not, see <http://www.gnu.org/licenses/>.
|
|
#
|
|
###############################################################################
|
|
from odoo import fields, models
|
|
|
|
|
|
class ProjectProject(models.Model):
|
|
""" This class extends the 'project.project' model to add a many2one
|
|
field for selecting project task template.
|
|
Methods:
|
|
action_create_project_from_template():
|
|
Creates a new project based on the selected project template.
|
|
_create_task(item, parent):
|
|
Creates a new project task for the given item and attaches
|
|
it to the current project.
|
|
"""
|
|
_inherit = 'project.project'
|
|
|
|
project_template_id = fields.Many2one(
|
|
'project.task.template',
|
|
string='Project Template',
|
|
help='Select a project task template to use for this project.')
|
|
|
|
def action_create_project_from_template(self):
|
|
""" Creates a new project based on the selected project template.
|
|
Returns:
|
|
dict: Action configuration to open the project form.
|
|
"""
|
|
for item in self.project_template_id.task_ids:
|
|
self._create_task(item, False)
|
|
return {
|
|
'view_mode': 'form',
|
|
'res_model': 'project.project',
|
|
'res_id': self.id,
|
|
'type': 'ir.actions.act_window',
|
|
'context': self._context
|
|
}
|
|
|
|
def _create_task(self, item, parent):
|
|
"""Creates a new project task for the given item and attaches it to
|
|
the current project.
|
|
Args:
|
|
item (models.Model): project task
|
|
parent (int): id of parent project task
|
|
"""
|
|
task = self.env['project.task'].sudo().create({
|
|
'project_id': self.id,
|
|
'name': item.name,
|
|
'parent_id': parent,
|
|
'stage_id': self.env['project.task.type'].search(
|
|
[('sequence', '=', 1)], limit=1).id,
|
|
'user_ids': item.user_ids,
|
|
'description': item.description
|
|
})
|
|
for sub_task in item.child_ids:
|
|
self._create_task(sub_task, task.id)
|
|
|