diff --git a/project_tasks_from_templates/README.rst b/project_tasks_from_templates/README.rst new file mode 100755 index 000000000..843313cb4 --- /dev/null +++ b/project_tasks_from_templates/README.rst @@ -0,0 +1,55 @@ +.. image:: https://img.shields.io/badge/license-AGPL--3-blue.svg + :target: https://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 + +Project Templates +================= +This module will help you to create projects and tasks from templates. + +Features +======== +* Allows to create project from project template. +* Multiple levels of tasks and sub tasks from template. + +Configuration +============= +Nothing to configure. + +License +------- +General Public License, Version 3 (AGPL v3). +(https://www.gnu.org/licenses/agpl-3.0-standalone.html) + +Company +------- +* `Cybrosys Techno Solutions `__ + +Credits +------- +* Developers: (V18) Mufeeda Shirin, Nivedhya T, + (V17) Farhana Jahan PT, + (V16) Anfas Faisal K, + (V15) Ajmunnisa KP, + Contact: odoo@cybrosys.com + +Contacts +-------- +* Mail Contact : odoo@cybrosys.com +* Website : https://cybrosys.com + +Bug Tracker +----------- +Bugs are tracked on GitHub Issues. In case of trouble, please check there if your issue has already been reported. + +Maintainer +========== +.. image:: https://cybrosys.com/images/logo.png + :target: https://cybrosys.com + +This module is maintained by Cybrosys Technologies. + +For support and more information, please visit `Our Website `__ + +Further information +=================== +HTML Description: ``__ diff --git a/project_tasks_from_templates/__init__.py b/project_tasks_from_templates/__init__.py new file mode 100755 index 000000000..531636dc3 --- /dev/null +++ b/project_tasks_from_templates/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2025-TODAY Cybrosys Technologies() +# 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 . +# +############################################################################### +from . import models diff --git a/project_tasks_from_templates/__manifest__.py b/project_tasks_from_templates/__manifest__.py new file mode 100755 index 000000000..36c311402 --- /dev/null +++ b/project_tasks_from_templates/__manifest__.py @@ -0,0 +1,51 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2025-TODAY Cybrosys Technologies() +# 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 . +# +############################################################################### +{ + 'name': 'Project Templates', + 'version': '18.0.1.0.0', + 'category': "Project", + 'summary': "This app allows your project team to create project" + "template and task template", + 'description': "When faced with the need to create multiple projects that " + "share similar tasks, manually inputting data such as task " + "names, descriptions, and assigned individuals can be " + "time-consuming. In such situations, this module offers " + "assistance in creating and managing projects based on " + "pre-defined templates.", + 'author': 'Cybrosys Techno Solutions', + 'company': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'website': "https://www.cybrosys.com", + 'depends': ['project'], + 'data': [ + 'security/ir.model.access.csv', + 'views/project_project_views.xml', + 'views/project_sub_task_views.xml', + 'views/project_stage_views.xml', + 'views/project_task_template_views.xml' + ], + 'images': ['static/description/banner.jpg'], + 'license': 'AGPL-3', + 'installable': True, + 'auto_install': False, + 'application': False, +} diff --git a/project_tasks_from_templates/doc/RELEASE_NOTES.md b/project_tasks_from_templates/doc/RELEASE_NOTES.md new file mode 100755 index 000000000..780a016f4 --- /dev/null +++ b/project_tasks_from_templates/doc/RELEASE_NOTES.md @@ -0,0 +1,5 @@ +## Module +#### 09.07.2025 +#### Version 18.0.1.0.0 +#### ADD +- Initial Commit for Project Templates diff --git a/project_tasks_from_templates/models/__init__.py b/project_tasks_from_templates/models/__init__.py new file mode 100755 index 000000000..d222104ca --- /dev/null +++ b/project_tasks_from_templates/models/__init__.py @@ -0,0 +1,26 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2025-TODAY Cybrosys Technologies() +# 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 . +# +############################################################################### +from . import project_project +from . import project_stage +from . import project_sub_task +from . import project_task_template +from . import project_task_type diff --git a/project_tasks_from_templates/models/project_project.py b/project_tasks_from_templates/models/project_project.py new file mode 100755 index 000000000..9f1b5cd02 --- /dev/null +++ b/project_tasks_from_templates/models/project_project.py @@ -0,0 +1,120 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2025-TODAY Cybrosys Technologies() +# 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 . +# +############################################################################### +from odoo import fields, models + + +class ProjectProject(models.Model): + """ + Extends the 'project.project' model to allow creating projects + from task templates. + + Fields: + project_template_id (Many2one): Select a project task template to + generate tasks for this project. + + Methods: + action_create_project_from_template(): + Creates tasks for the project based on the selected template. + _create_task(item, parent): + Creates a project task (and its subtasks) without stage linkage. + _create_task_with_stage(item, stage, parent): + Creates a project task (and its subtasks) with a given stage. + """ + _inherit = 'project.project' + + project_template_id = fields.Many2one( + comodel_name='project.task.template', + string='Project Template', + help='Select a project task template to use for this project.') + + def action_create_project_from_template(self): + """ + Create project tasks from the selected template. + + Returns: + dict: Action to open the project form view. + """ + if not self.project_template_id.stage_ids: + # Create tasks directly from the template + for item in self.project_template_id.task_ids: + self._create_task(item, parent=False) + return { + 'view_mode': 'form', + 'res_model': 'project.project', + 'res_id': self.id, + 'type': 'ir.actions.act_window', + 'context': self._context, + } + + # Create tasks grouped by stages + for stage in self.project_template_id.stage_ids: + if self.id not in stage.project_stage_id.project_ids.ids: + stage.project_stage_id.project_ids = [(4, self.id)] + + for task in stage.task_ids: + self._create_task_with_stage( + task, stage.project_stage_id, parent=False + ) + + def _create_task(self, item, parent): + """ + Create a new project task and its subtasks without stage linkage. + + Args: + item (recordset): Task template record. + parent (int|bool): ID of the parent task, or False for top-level. + """ + 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, + 'state': item.state or '01_in_progress', + }) + + for sub_task in item.child_ids: + self._create_task(sub_task, parent=task.id) + + def _create_task_with_stage(self, item, stage, parent=False): + """ + Create a new project task and its subtasks with a specific stage. + + Args: + item (recordset): Task template record. + stage (recordset): Project task stage. + parent (int|bool): ID of the parent task, or False for top-level. + """ + task = self.env['project.task'].sudo().create({ + 'project_id': self.id, + 'name': item.name, + 'parent_id': parent, + 'stage_id': stage.id, + 'user_ids': item.user_ids, + 'description': item.description, + 'state': item.state or '01_in_progress', + }) + + for sub_task in item.child_ids: + self._create_task_with_stage(sub_task, stage, parent=task.id) diff --git a/project_tasks_from_templates/models/project_stage.py b/project_tasks_from_templates/models/project_stage.py new file mode 100644 index 000000000..69fe4e3d3 --- /dev/null +++ b/project_tasks_from_templates/models/project_stage.py @@ -0,0 +1,42 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2025-TODAY Cybrosys Technologies() +# 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 . +# +############################################################################### +from odoo import fields, models + + +class ProjectStage(models.Model): + """Model to link project stages with task templates and subtasks.""" + _name = "project.stage" + _description = "Project Stage" + _order = "sequence, id" + + project_template_id = fields.Many2one( + comodel_name="project.task.template",string="Project Template", + help="Select a project task template to use for this stage.") + project_stage_id = fields.Many2one( + comodel_name="project.task.type", + string="Project Stage",required=True,help="Select the project stage.") + task_ids = fields.Many2many( + comodel_name="project.sub.task",string="Subtasks", + help="Subtasks associated with this stage.") + sequence = fields.Integer( + related="project_stage_id.sequence",readonly=False, + help = "Defines the order of this stage.") diff --git a/project_tasks_from_templates/models/project_sub_task.py b/project_tasks_from_templates/models/project_sub_task.py new file mode 100644 index 000000000..2f88eafc8 --- /dev/null +++ b/project_tasks_from_templates/models/project_sub_task.py @@ -0,0 +1,89 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2025-TODAY Cybrosys Technologies() +# 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 . +# +############################################################################### +from odoo import fields, models + +CLOSED_STATES = { + '1_done': 'Done', + '1_canceled': 'Canceled', +} + +class ProjectSubTask(models.Model): + """Customized version of the 'project.task' model to support templates + and sub-tasks + Methods: + action_open_task(): + Returns an action to open the current task in a form view""" + _name = 'project.sub.task' + _description = 'Project Sub Task' + + name = fields.Char(string='Name', required=True, + help='Enter the name of the task') + project_template_id = fields.Many2one( + 'project.task.template', string='Project Template', + help='Select a project task template to use for this task.') + description = fields.Html(string='Task Description', + help='Enter a description for the task.') + user_ids = fields.Many2many( + 'res.users', relation='project_task_custom_user_rel', + column1='task_id', column2='user_id', string='Assignees', + tracking=True, help='Select the users who are assigned to this task.') + parent_id = fields.Many2one( + 'project.sub.task', string='Parent Task', index=True, + help='Select the parent task, if any.') + child_ids = fields.One2many( + 'project.sub.task', 'parent_id', string='Sub-Tasks', + help='List of sub-tasks, if any.') + show_tasks_page = fields.Boolean( + compute='_compute_show_tasks_page', readonly=False, string="Show Tasks Page", + help='Indicates whether the Sub-Tasks page should be displayed.') + state = fields.Selection([ + ('01_in_progress', 'In Progress'), + ('02_changes_requested', 'Changes Requested'), + ('03_approved', 'Approved'), + *CLOSED_STATES.items(), + ('04_waiting_normal', 'Waiting'), + ], string='State', default='01_in_progress', + help='Represents the current status of the sub-task.') + + def action_open_task(self): + """ Action method to open the current task in a form view. + Returns: + dict: Action configuration to open the task form. + """ + return { + 'view_mode': 'form', + 'res_model': 'project.sub.task', + 'res_id': self.id, + 'type': 'ir.actions.act_window', + 'context': self._context + } + + def _compute_show_tasks_page(self): + """ Compute function to determine whether project_template_id present. + This method computes the value of the 'show_tasks_page' field for each + record based on whether project_template_id present or not. + If project_template_id present, 'show_tasks_page' is set to True, + allowing the display of Sub-Tasks. If project_template_id + are not present, 'show_tasks_page' is set to False.""" + for task in self: + if task.project_template_id: + task.show_tasks_page = True diff --git a/project_tasks_from_templates/models/project_task_template.py b/project_tasks_from_templates/models/project_task_template.py new file mode 100644 index 000000000..ae2cacba7 --- /dev/null +++ b/project_tasks_from_templates/models/project_task_template.py @@ -0,0 +1,39 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2025-TODAY Cybrosys Technologies() +# 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 . +# +############################################################################### +from odoo import fields, models + + +class ProjectTaskTemplate(models.Model): + """A model to define task templates for projects.""" + _name = 'project.task.template' + _description = 'Project Task Template' + + name = fields.Char(string='Template Name', translate=True, + help='Name for the task template.') + task_ids = fields.One2many( + 'project.sub.task', 'project_template_id', + string='Tasks', + help='List of the tasks associated with this template.') + stage_ids = fields.One2many( + 'project.stage', 'project_template_id', + string='Stages', + help='List of the stages associated with this template.') diff --git a/project_tasks_from_templates/models/project_task_type.py b/project_tasks_from_templates/models/project_task_type.py new file mode 100644 index 000000000..312e69867 --- /dev/null +++ b/project_tasks_from_templates/models/project_task_type.py @@ -0,0 +1,31 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2025-TODAY Cybrosys Technologies() +# 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 . +# +############################################################################### +from odoo import models, fields + + +class ProjectTaskType(models.Model): + """ Inherited the model Project Task Type""" + _inherit = "project.task.type" + + project_template_id = fields.Many2one( + 'project.task.template', + help="The template associated with this task type.") diff --git a/project_tasks_from_templates/security/ir.model.access.csv b/project_tasks_from_templates/security/ir.model.access.csv new file mode 100755 index 000000000..883a3685c --- /dev/null +++ b/project_tasks_from_templates/security/ir.model.access.csv @@ -0,0 +1,4 @@ +id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink +access_project_task_template_manager,access.project.task.template.manager,model_project_task_template,project.group_project_manager,1,1,1,1 +access_project_sub_task_manager,access.project.sub.task.manager,model_project_sub_task,project.group_project_manager,1,1,1,1 +access_project_stage,access.project.stage,model_project_stage,project.group_project_manager,1,1,1,1 diff --git a/project_tasks_from_templates/static/description/assets/cybro-icon.png b/project_tasks_from_templates/static/description/assets/cybro-icon.png new file mode 100644 index 000000000..06e73e11d Binary files /dev/null and b/project_tasks_from_templates/static/description/assets/cybro-icon.png differ diff --git a/project_tasks_from_templates/static/description/assets/cybro-odoo.png b/project_tasks_from_templates/static/description/assets/cybro-odoo.png new file mode 100644 index 000000000..ed02e07a4 Binary files /dev/null and b/project_tasks_from_templates/static/description/assets/cybro-odoo.png differ diff --git a/project_tasks_from_templates/static/description/assets/h2.png b/project_tasks_from_templates/static/description/assets/h2.png new file mode 100755 index 000000000..0bfc4707d Binary files /dev/null and b/project_tasks_from_templates/static/description/assets/h2.png differ diff --git a/project_tasks_from_templates/static/description/assets/icons/arrows-repeat.svg b/project_tasks_from_templates/static/description/assets/icons/arrows-repeat.svg new file mode 100644 index 000000000..1d7efabc5 --- /dev/null +++ b/project_tasks_from_templates/static/description/assets/icons/arrows-repeat.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/project_tasks_from_templates/static/description/assets/icons/banner-1.png b/project_tasks_from_templates/static/description/assets/icons/banner-1.png new file mode 100644 index 000000000..c180db172 Binary files /dev/null and b/project_tasks_from_templates/static/description/assets/icons/banner-1.png differ diff --git a/project_tasks_from_templates/static/description/assets/icons/banner-2.svg b/project_tasks_from_templates/static/description/assets/icons/banner-2.svg new file mode 100644 index 000000000..e606d97d9 --- /dev/null +++ b/project_tasks_from_templates/static/description/assets/icons/banner-2.svg @@ -0,0 +1,73 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/project_tasks_from_templates/static/description/assets/icons/banner-bg.png b/project_tasks_from_templates/static/description/assets/icons/banner-bg.png new file mode 100644 index 000000000..a8238d3c0 Binary files /dev/null and b/project_tasks_from_templates/static/description/assets/icons/banner-bg.png differ diff --git a/project_tasks_from_templates/static/description/assets/icons/banner-bg.svg b/project_tasks_from_templates/static/description/assets/icons/banner-bg.svg new file mode 100644 index 000000000..b1378103e --- /dev/null +++ b/project_tasks_from_templates/static/description/assets/icons/banner-bg.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/project_tasks_from_templates/static/description/assets/icons/banner-call.svg b/project_tasks_from_templates/static/description/assets/icons/banner-call.svg new file mode 100644 index 000000000..96c687e81 --- /dev/null +++ b/project_tasks_from_templates/static/description/assets/icons/banner-call.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/project_tasks_from_templates/static/description/assets/icons/banner-mail.svg b/project_tasks_from_templates/static/description/assets/icons/banner-mail.svg new file mode 100644 index 000000000..cbf0d158d --- /dev/null +++ b/project_tasks_from_templates/static/description/assets/icons/banner-mail.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/project_tasks_from_templates/static/description/assets/icons/banner-pattern.svg b/project_tasks_from_templates/static/description/assets/icons/banner-pattern.svg new file mode 100644 index 000000000..9c1c7e101 --- /dev/null +++ b/project_tasks_from_templates/static/description/assets/icons/banner-pattern.svg @@ -0,0 +1,343 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/project_tasks_from_templates/static/description/assets/icons/banner-promo.svg b/project_tasks_from_templates/static/description/assets/icons/banner-promo.svg new file mode 100644 index 000000000..d52791b11 --- /dev/null +++ b/project_tasks_from_templates/static/description/assets/icons/banner-promo.svg @@ -0,0 +1,147 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/project_tasks_from_templates/static/description/assets/icons/brand-pair.svg b/project_tasks_from_templates/static/description/assets/icons/brand-pair.svg new file mode 100644 index 000000000..d8db7fc1e --- /dev/null +++ b/project_tasks_from_templates/static/description/assets/icons/brand-pair.svg @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/project_tasks_from_templates/static/description/assets/icons/check.png b/project_tasks_from_templates/static/description/assets/icons/check.png new file mode 100644 index 000000000..c8e85f51d Binary files /dev/null and b/project_tasks_from_templates/static/description/assets/icons/check.png differ diff --git a/project_tasks_from_templates/static/description/assets/icons/chevron.png b/project_tasks_from_templates/static/description/assets/icons/chevron.png new file mode 100644 index 000000000..2089293d6 Binary files /dev/null and b/project_tasks_from_templates/static/description/assets/icons/chevron.png differ diff --git a/project_tasks_from_templates/static/description/assets/icons/close-icon.svg b/project_tasks_from_templates/static/description/assets/icons/close-icon.svg new file mode 100644 index 000000000..df8cce37a --- /dev/null +++ b/project_tasks_from_templates/static/description/assets/icons/close-icon.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/project_tasks_from_templates/static/description/assets/icons/cogs.png b/project_tasks_from_templates/static/description/assets/icons/cogs.png new file mode 100644 index 000000000..95d0bad62 Binary files /dev/null and b/project_tasks_from_templates/static/description/assets/icons/cogs.png differ diff --git a/project_tasks_from_templates/static/description/assets/icons/collabarate-icon.svg b/project_tasks_from_templates/static/description/assets/icons/collabarate-icon.svg new file mode 100644 index 000000000..dd4e10518 --- /dev/null +++ b/project_tasks_from_templates/static/description/assets/icons/collabarate-icon.svg @@ -0,0 +1,3 @@ + + + diff --git a/project_tasks_from_templates/static/description/assets/icons/consultation.png b/project_tasks_from_templates/static/description/assets/icons/consultation.png new file mode 100644 index 000000000..8319d4baa Binary files /dev/null and b/project_tasks_from_templates/static/description/assets/icons/consultation.png differ diff --git a/project_tasks_from_templates/static/description/assets/icons/cybro-logo.png b/project_tasks_from_templates/static/description/assets/icons/cybro-logo.png new file mode 100644 index 000000000..ff4b78220 Binary files /dev/null and b/project_tasks_from_templates/static/description/assets/icons/cybro-logo.png differ diff --git a/project_tasks_from_templates/static/description/assets/icons/down.svg b/project_tasks_from_templates/static/description/assets/icons/down.svg new file mode 100644 index 000000000..f21c36271 --- /dev/null +++ b/project_tasks_from_templates/static/description/assets/icons/down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/project_tasks_from_templates/static/description/assets/icons/ecom-black.png b/project_tasks_from_templates/static/description/assets/icons/ecom-black.png new file mode 100644 index 000000000..a9385ff13 Binary files /dev/null and b/project_tasks_from_templates/static/description/assets/icons/ecom-black.png differ diff --git a/project_tasks_from_templates/static/description/assets/icons/education-black.png b/project_tasks_from_templates/static/description/assets/icons/education-black.png new file mode 100644 index 000000000..3eb09b27b Binary files /dev/null and b/project_tasks_from_templates/static/description/assets/icons/education-black.png differ diff --git a/project_tasks_from_templates/static/description/assets/icons/faq.png b/project_tasks_from_templates/static/description/assets/icons/faq.png new file mode 100644 index 000000000..4250b5b81 Binary files /dev/null and b/project_tasks_from_templates/static/description/assets/icons/faq.png differ diff --git a/project_tasks_from_templates/static/description/assets/icons/feature-icon.svg b/project_tasks_from_templates/static/description/assets/icons/feature-icon.svg new file mode 100644 index 000000000..fa0ea6850 --- /dev/null +++ b/project_tasks_from_templates/static/description/assets/icons/feature-icon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/project_tasks_from_templates/static/description/assets/icons/feature.png b/project_tasks_from_templates/static/description/assets/icons/feature.png new file mode 100644 index 000000000..ac7a785c0 Binary files /dev/null and b/project_tasks_from_templates/static/description/assets/icons/feature.png differ diff --git a/project_tasks_from_templates/static/description/assets/icons/gear.svg b/project_tasks_from_templates/static/description/assets/icons/gear.svg new file mode 100644 index 000000000..0cc66b6ea --- /dev/null +++ b/project_tasks_from_templates/static/description/assets/icons/gear.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/project_tasks_from_templates/static/description/assets/icons/hero.gif b/project_tasks_from_templates/static/description/assets/icons/hero.gif new file mode 100644 index 000000000..7fae3cecd Binary files /dev/null and b/project_tasks_from_templates/static/description/assets/icons/hero.gif differ diff --git a/project_tasks_from_templates/static/description/assets/icons/hire-odoo.svg b/project_tasks_from_templates/static/description/assets/icons/hire-odoo.svg new file mode 100644 index 000000000..e1ac089b0 --- /dev/null +++ b/project_tasks_from_templates/static/description/assets/icons/hire-odoo.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/project_tasks_from_templates/static/description/assets/icons/hotel-black.png b/project_tasks_from_templates/static/description/assets/icons/hotel-black.png new file mode 100644 index 000000000..130f613be Binary files /dev/null and b/project_tasks_from_templates/static/description/assets/icons/hotel-black.png differ diff --git a/project_tasks_from_templates/static/description/assets/icons/license.png b/project_tasks_from_templates/static/description/assets/icons/license.png new file mode 100644 index 000000000..a5869797e Binary files /dev/null and b/project_tasks_from_templates/static/description/assets/icons/license.png differ diff --git a/project_tasks_from_templates/static/description/assets/icons/life-ring-icon.svg b/project_tasks_from_templates/static/description/assets/icons/life-ring-icon.svg new file mode 100644 index 000000000..3ae6e1d89 --- /dev/null +++ b/project_tasks_from_templates/static/description/assets/icons/life-ring-icon.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/project_tasks_from_templates/static/description/assets/icons/lifebuoy.png b/project_tasks_from_templates/static/description/assets/icons/lifebuoy.png new file mode 100644 index 000000000..658d56ccc Binary files /dev/null and b/project_tasks_from_templates/static/description/assets/icons/lifebuoy.png differ diff --git a/project_tasks_from_templates/static/description/assets/icons/mail.svg b/project_tasks_from_templates/static/description/assets/icons/mail.svg new file mode 100644 index 000000000..1eedde695 --- /dev/null +++ b/project_tasks_from_templates/static/description/assets/icons/mail.svg @@ -0,0 +1,3 @@ + + + diff --git a/project_tasks_from_templates/static/description/assets/icons/manufacturing-black.png b/project_tasks_from_templates/static/description/assets/icons/manufacturing-black.png new file mode 100644 index 000000000..697eb0e9f Binary files /dev/null and b/project_tasks_from_templates/static/description/assets/icons/manufacturing-black.png differ diff --git a/project_tasks_from_templates/static/description/assets/icons/notes.png b/project_tasks_from_templates/static/description/assets/icons/notes.png new file mode 100644 index 000000000..ee5e95404 Binary files /dev/null and b/project_tasks_from_templates/static/description/assets/icons/notes.png differ diff --git a/project_tasks_from_templates/static/description/assets/icons/notification icon.svg b/project_tasks_from_templates/static/description/assets/icons/notification icon.svg new file mode 100644 index 000000000..053189973 --- /dev/null +++ b/project_tasks_from_templates/static/description/assets/icons/notification icon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/project_tasks_from_templates/static/description/assets/icons/odoo-consultancy.svg b/project_tasks_from_templates/static/description/assets/icons/odoo-consultancy.svg new file mode 100644 index 000000000..e05f65bde --- /dev/null +++ b/project_tasks_from_templates/static/description/assets/icons/odoo-consultancy.svg @@ -0,0 +1,4 @@ + + + + diff --git a/project_tasks_from_templates/static/description/assets/icons/odoo-licencing.svg b/project_tasks_from_templates/static/description/assets/icons/odoo-licencing.svg new file mode 100644 index 000000000..2606c88b0 --- /dev/null +++ b/project_tasks_from_templates/static/description/assets/icons/odoo-licencing.svg @@ -0,0 +1,3 @@ + + + diff --git a/project_tasks_from_templates/static/description/assets/icons/odoo-logo.png b/project_tasks_from_templates/static/description/assets/icons/odoo-logo.png new file mode 100644 index 000000000..0e4d0eb5a Binary files /dev/null and b/project_tasks_from_templates/static/description/assets/icons/odoo-logo.png differ diff --git a/project_tasks_from_templates/static/description/assets/icons/patter.svg b/project_tasks_from_templates/static/description/assets/icons/patter.svg new file mode 100644 index 000000000..25c9c0a8f --- /dev/null +++ b/project_tasks_from_templates/static/description/assets/icons/patter.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/project_tasks_from_templates/static/description/assets/icons/pattern1.png b/project_tasks_from_templates/static/description/assets/icons/pattern1.png new file mode 100644 index 000000000..09ab0fb2d Binary files /dev/null and b/project_tasks_from_templates/static/description/assets/icons/pattern1.png differ diff --git a/project_tasks_from_templates/static/description/assets/icons/pos-black.png b/project_tasks_from_templates/static/description/assets/icons/pos-black.png new file mode 100644 index 000000000..97c0f90c1 Binary files /dev/null and b/project_tasks_from_templates/static/description/assets/icons/pos-black.png differ diff --git a/project_tasks_from_templates/static/description/assets/icons/puzzle-piece-icon.svg b/project_tasks_from_templates/static/description/assets/icons/puzzle-piece-icon.svg new file mode 100644 index 000000000..3e9ad9373 --- /dev/null +++ b/project_tasks_from_templates/static/description/assets/icons/puzzle-piece-icon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/project_tasks_from_templates/static/description/assets/icons/puzzle.png b/project_tasks_from_templates/static/description/assets/icons/puzzle.png new file mode 100644 index 000000000..65cf854e7 Binary files /dev/null and b/project_tasks_from_templates/static/description/assets/icons/puzzle.png differ diff --git a/project_tasks_from_templates/static/description/assets/icons/replace-icon.svg b/project_tasks_from_templates/static/description/assets/icons/replace-icon.svg new file mode 100644 index 000000000..d0e3a7af1 --- /dev/null +++ b/project_tasks_from_templates/static/description/assets/icons/replace-icon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/project_tasks_from_templates/static/description/assets/icons/restaurant-black.png b/project_tasks_from_templates/static/description/assets/icons/restaurant-black.png new file mode 100644 index 000000000..4a35eb939 Binary files /dev/null and b/project_tasks_from_templates/static/description/assets/icons/restaurant-black.png differ diff --git a/project_tasks_from_templates/static/description/assets/icons/screenshot-main.png b/project_tasks_from_templates/static/description/assets/icons/screenshot-main.png new file mode 100644 index 000000000..575f8e676 Binary files /dev/null and b/project_tasks_from_templates/static/description/assets/icons/screenshot-main.png differ diff --git a/project_tasks_from_templates/static/description/assets/icons/screenshot.png b/project_tasks_from_templates/static/description/assets/icons/screenshot.png new file mode 100644 index 000000000..cef272529 Binary files /dev/null and b/project_tasks_from_templates/static/description/assets/icons/screenshot.png differ diff --git a/project_tasks_from_templates/static/description/assets/icons/service-black.png b/project_tasks_from_templates/static/description/assets/icons/service-black.png new file mode 100644 index 000000000..301ab51cb Binary files /dev/null and b/project_tasks_from_templates/static/description/assets/icons/service-black.png differ diff --git a/project_tasks_from_templates/static/description/assets/icons/skype-fill.svg b/project_tasks_from_templates/static/description/assets/icons/skype-fill.svg new file mode 100644 index 000000000..c17423639 --- /dev/null +++ b/project_tasks_from_templates/static/description/assets/icons/skype-fill.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/project_tasks_from_templates/static/description/assets/icons/skype.png b/project_tasks_from_templates/static/description/assets/icons/skype.png new file mode 100644 index 000000000..51b409fb3 Binary files /dev/null and b/project_tasks_from_templates/static/description/assets/icons/skype.png differ diff --git a/project_tasks_from_templates/static/description/assets/icons/skype.svg b/project_tasks_from_templates/static/description/assets/icons/skype.svg new file mode 100644 index 000000000..df3dad39b --- /dev/null +++ b/project_tasks_from_templates/static/description/assets/icons/skype.svg @@ -0,0 +1,3 @@ + + + diff --git a/project_tasks_from_templates/static/description/assets/icons/star-1.svg b/project_tasks_from_templates/static/description/assets/icons/star-1.svg new file mode 100644 index 000000000..7e55ab162 --- /dev/null +++ b/project_tasks_from_templates/static/description/assets/icons/star-1.svg @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/project_tasks_from_templates/static/description/assets/icons/star-2.svg b/project_tasks_from_templates/static/description/assets/icons/star-2.svg new file mode 100644 index 000000000..5ae9f507a --- /dev/null +++ b/project_tasks_from_templates/static/description/assets/icons/star-2.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/project_tasks_from_templates/static/description/assets/icons/support.png b/project_tasks_from_templates/static/description/assets/icons/support.png new file mode 100644 index 000000000..4f18b8b82 Binary files /dev/null and b/project_tasks_from_templates/static/description/assets/icons/support.png differ diff --git a/project_tasks_from_templates/static/description/assets/icons/test-1 - Copy.png b/project_tasks_from_templates/static/description/assets/icons/test-1 - Copy.png new file mode 100644 index 000000000..f6a902663 Binary files /dev/null and b/project_tasks_from_templates/static/description/assets/icons/test-1 - Copy.png differ diff --git a/project_tasks_from_templates/static/description/assets/icons/test-1.png b/project_tasks_from_templates/static/description/assets/icons/test-1.png new file mode 100644 index 000000000..0908add2b Binary files /dev/null and b/project_tasks_from_templates/static/description/assets/icons/test-1.png differ diff --git a/project_tasks_from_templates/static/description/assets/icons/test-2.png b/project_tasks_from_templates/static/description/assets/icons/test-2.png new file mode 100644 index 000000000..4671fe91e Binary files /dev/null and b/project_tasks_from_templates/static/description/assets/icons/test-2.png differ diff --git a/project_tasks_from_templates/static/description/assets/icons/trading-black.png b/project_tasks_from_templates/static/description/assets/icons/trading-black.png new file mode 100644 index 000000000..9398ba2f1 Binary files /dev/null and b/project_tasks_from_templates/static/description/assets/icons/trading-black.png differ diff --git a/project_tasks_from_templates/static/description/assets/icons/training.png b/project_tasks_from_templates/static/description/assets/icons/training.png new file mode 100644 index 000000000..884ca024d Binary files /dev/null and b/project_tasks_from_templates/static/description/assets/icons/training.png differ diff --git a/project_tasks_from_templates/static/description/assets/icons/translate.svg b/project_tasks_from_templates/static/description/assets/icons/translate.svg new file mode 100644 index 000000000..af9c8a1aa --- /dev/null +++ b/project_tasks_from_templates/static/description/assets/icons/translate.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/project_tasks_from_templates/static/description/assets/icons/update.png b/project_tasks_from_templates/static/description/assets/icons/update.png new file mode 100644 index 000000000..ecbc5a01a Binary files /dev/null and b/project_tasks_from_templates/static/description/assets/icons/update.png differ diff --git a/project_tasks_from_templates/static/description/assets/icons/user.png b/project_tasks_from_templates/static/description/assets/icons/user.png new file mode 100644 index 000000000..6ffb23d9f Binary files /dev/null and b/project_tasks_from_templates/static/description/assets/icons/user.png differ diff --git a/project_tasks_from_templates/static/description/assets/icons/video.png b/project_tasks_from_templates/static/description/assets/icons/video.png new file mode 100644 index 000000000..576705b17 Binary files /dev/null and b/project_tasks_from_templates/static/description/assets/icons/video.png differ diff --git a/project_tasks_from_templates/static/description/assets/icons/whatsapp.png b/project_tasks_from_templates/static/description/assets/icons/whatsapp.png new file mode 100644 index 000000000..d513a5356 Binary files /dev/null and b/project_tasks_from_templates/static/description/assets/icons/whatsapp.png differ diff --git a/project_tasks_from_templates/static/description/assets/icons/wrench-icon.svg b/project_tasks_from_templates/static/description/assets/icons/wrench-icon.svg new file mode 100644 index 000000000..174b5a465 --- /dev/null +++ b/project_tasks_from_templates/static/description/assets/icons/wrench-icon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/project_tasks_from_templates/static/description/assets/icons/wrench.png b/project_tasks_from_templates/static/description/assets/icons/wrench.png new file mode 100644 index 000000000..6c04dea0f Binary files /dev/null and b/project_tasks_from_templates/static/description/assets/icons/wrench.png differ diff --git a/project_tasks_from_templates/static/description/assets/modules/b02.png b/project_tasks_from_templates/static/description/assets/modules/b02.png new file mode 100644 index 000000000..acef8232a Binary files /dev/null and b/project_tasks_from_templates/static/description/assets/modules/b02.png differ diff --git a/project_tasks_from_templates/static/description/assets/modules/b03.png b/project_tasks_from_templates/static/description/assets/modules/b03.png new file mode 100644 index 000000000..e6b78ab22 Binary files /dev/null and b/project_tasks_from_templates/static/description/assets/modules/b03.png differ diff --git a/project_tasks_from_templates/static/description/assets/modules/b06.png b/project_tasks_from_templates/static/description/assets/modules/b06.png new file mode 100644 index 000000000..70820e8ac Binary files /dev/null and b/project_tasks_from_templates/static/description/assets/modules/b06.png differ diff --git a/project_tasks_from_templates/static/description/assets/modules/b1.png b/project_tasks_from_templates/static/description/assets/modules/b1.png new file mode 100644 index 000000000..033f94f83 Binary files /dev/null and b/project_tasks_from_templates/static/description/assets/modules/b1.png differ diff --git a/project_tasks_from_templates/static/description/assets/modules/b4.png b/project_tasks_from_templates/static/description/assets/modules/b4.png new file mode 100644 index 000000000..e3e82d0dc Binary files /dev/null and b/project_tasks_from_templates/static/description/assets/modules/b4.png differ diff --git a/project_tasks_from_templates/static/description/assets/modules/b5.png b/project_tasks_from_templates/static/description/assets/modules/b5.png new file mode 100644 index 000000000..f8ba1718b Binary files /dev/null and b/project_tasks_from_templates/static/description/assets/modules/b5.png differ diff --git a/project_tasks_from_templates/static/description/assets/screenshots/screenshot1.png b/project_tasks_from_templates/static/description/assets/screenshots/screenshot1.png new file mode 100644 index 000000000..855616473 Binary files /dev/null and b/project_tasks_from_templates/static/description/assets/screenshots/screenshot1.png differ diff --git a/project_tasks_from_templates/static/description/assets/screenshots/screenshot2.png b/project_tasks_from_templates/static/description/assets/screenshots/screenshot2.png new file mode 100644 index 000000000..caadee3cc Binary files /dev/null and b/project_tasks_from_templates/static/description/assets/screenshots/screenshot2.png differ diff --git a/project_tasks_from_templates/static/description/assets/screenshots/screenshot3.png b/project_tasks_from_templates/static/description/assets/screenshots/screenshot3.png new file mode 100644 index 000000000..18a516215 Binary files /dev/null and b/project_tasks_from_templates/static/description/assets/screenshots/screenshot3.png differ diff --git a/project_tasks_from_templates/static/description/assets/screenshots/screenshot4.png b/project_tasks_from_templates/static/description/assets/screenshots/screenshot4.png new file mode 100644 index 000000000..f30854a35 Binary files /dev/null and b/project_tasks_from_templates/static/description/assets/screenshots/screenshot4.png differ diff --git a/project_tasks_from_templates/static/description/assets/screenshots/screenshot5.png b/project_tasks_from_templates/static/description/assets/screenshots/screenshot5.png new file mode 100644 index 000000000..e18ec6765 Binary files /dev/null and b/project_tasks_from_templates/static/description/assets/screenshots/screenshot5.png differ diff --git a/project_tasks_from_templates/static/description/assets/screenshots/screenshot6.png b/project_tasks_from_templates/static/description/assets/screenshots/screenshot6.png new file mode 100644 index 000000000..295c3ca95 Binary files /dev/null and b/project_tasks_from_templates/static/description/assets/screenshots/screenshot6.png differ diff --git a/project_tasks_from_templates/static/description/assets/screenshots/screenshot7.png b/project_tasks_from_templates/static/description/assets/screenshots/screenshot7.png new file mode 100644 index 000000000..99528d1ee Binary files /dev/null and b/project_tasks_from_templates/static/description/assets/screenshots/screenshot7.png differ diff --git a/project_tasks_from_templates/static/description/assets/y18.jpg b/project_tasks_from_templates/static/description/assets/y18.jpg new file mode 100755 index 000000000..eea1714f2 Binary files /dev/null and b/project_tasks_from_templates/static/description/assets/y18.jpg differ diff --git a/project_tasks_from_templates/static/description/banner.jpg b/project_tasks_from_templates/static/description/banner.jpg new file mode 100644 index 000000000..7645555fd Binary files /dev/null and b/project_tasks_from_templates/static/description/banner.jpg differ diff --git a/project_tasks_from_templates/static/description/icon.png b/project_tasks_from_templates/static/description/icon.png new file mode 100644 index 000000000..ed79382cc Binary files /dev/null and b/project_tasks_from_templates/static/description/icon.png differ diff --git a/project_tasks_from_templates/static/description/index.html b/project_tasks_from_templates/static/description/index.html new file mode 100644 index 000000000..055fa004c --- /dev/null +++ b/project_tasks_from_templates/static/description/index.html @@ -0,0 +1,673 @@ + + + + + + Project Templates + + + + + + + + + +
+
+
+
+ Community +
+
+ Enterprise +
+
+ Odoo.sh +
+
+
+
+
+
+
+

+ This App Allows Your Project Team To Create Project Template +

+

+ Project Templates +

+
+
+ Brand Pair +
+ +
+ Hero Image +
+
+
+ Banner Background +
+
+ Pattern +
+
+
+
+
+

Key Highlights

+
+
+
+
+ Feature Icon +
+
Project Template
+

+ Allows to create Project from Project Template. +

+
+
+
+
+
+ Feature Icon +
+
Tasks and Sub-tasks
+

+ Multiple levels of tasks and sub tasks from template. +

+
+
+
+
+
+
+
+ + Project Templates + +

+ Are you ready to make your business more organized?
Improve now! +

+ +
+
+ Banner Pattern +
+
+
+
+ +
+
+
+ Background +
+
+
+
+
+

+ Create a new + Project Templates +

+
+
+

+ Project -> Configuration -> Project Templates +

+
+
+
+ Screenshot 1 +
+
+
+
+
+
+
+
+
+

+ Configure + Template +

+
+
+

+ Specify the Template Name and add Tasks, Click on View Task to view the details of the Task. +

+
+
+
+ Screenshot 2 +
+
+
+
+
+
+
+
+
+

+ Can Create + Sub Tasks +

+
+
+

+ You can create Multiple Levels of Sub-tasks for Specified Task by click on Add a line button. +

+
+
+
+ Screenshot 3 +
+
+
+
+
+
+
+
+
+

+ Create Project using + Template +

+
+
+

+ Select the Project Template and Click on the Create Project from Template to Create a Project using the Project Template. +

+
+
+
+ Screenshot 4 +
+
+
+
+
+
+
+
+
+

+ Tasks same as + Template +

+
+
+

+ You can see the Tasks are created as configured in the template. +

+
+
+
+ Screenshot 5 +
+
+
+
+
+
+
+
+
+

+ View of + Tasks +

+
+
+

+ Here is a list of Tasks for the specific Project, and some of these Tasks contain Sub-tasks, as shown in the screenshot. +

+
+
+
+ Screenshot 6 +
+
+
+
+
+
+
+
+
+

+ View of + Sub Tasks +

+
+
+

+ Tasks -> Sub-tasks. Tasks that Include Sub-Tasks. +

+
+
+
+ Screenshot 7 +
+
+
+
+
+
+
+
+
+
+
+
+ +
+

+ Available in Odoo 18.0 Community, Enterprise +

+
+
+
+
+
+
+
+ +
+

+ Multiple levels of tasks and sub tasks from template +

+
+
+
+
+
+
+
+ +
+

+ Allows to create Project from Project Template +

+
+
+
+
+
+
+
+
+
+
+ +
+

+ You can create as many project templates as needed +

+
+
+
+ +
+

+ You can modify an existing template at any time. However, changes will only affect future projects created using that template +

+
+
+
+
+
+
+
+
+
+

+ Latest Release 18.0.1.0.0 +

+ + 09th July, 2025 + +
+
+
+
+
+ Add +
+
+
+
    +
  • Initial Commit
  • +
+
+
+
+
+
+
+
+
+
+

+ Related Products +

+ +
+
+
+

+ Our Services +

+
+ +
+
+
+ +
+
+
+
+
+
+ + + + + + \ No newline at end of file diff --git a/project_tasks_from_templates/views/project_project_views.xml b/project_tasks_from_templates/views/project_project_views.xml new file mode 100755 index 000000000..f23a8b926 --- /dev/null +++ b/project_tasks_from_templates/views/project_project_views.xml @@ -0,0 +1,42 @@ + + + + + + project.project.view.form.inherit.project.tasks.from.templates + + project.project + + + +
+ + +
+
+
+ + + + + project.project.view.form.inherit.project.tasks.from.templates.footer + + project.project + + + +