diff --git a/project_tasks_from_templates/README.rst b/project_tasks_from_templates/README.rst new file mode 100755 index 000000000..3639dba0d --- /dev/null +++ b/project_tasks_from_templates/README.rst @@ -0,0 +1,45 @@ +.. 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. + +Configuration +============= +* No additional configurations needed + +License +------- +General Public License, Version 3 (AGPL v3). +(https://www.gnu.org/licenses/agpl-3.0-standalone.html) + +Company +------- +* `Cybrosys Techno Solutions `__ + +Credits +------- +* Developers (V15) Ajmunnisa KP, Contact : odoo@cybrosys.com + (V16) Anfas Faisal K, 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. + +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..f03fb2c25 --- /dev/null +++ b/project_tasks_from_templates/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies(). +# Author: Anfas Faisal K (odoo@cybrosys.info) +# +# 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..baf712856 --- /dev/null +++ b/project_tasks_from_templates/__manifest__.py @@ -0,0 +1,50 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies(). +# Author: Anfas Faisal K (odoo@cybrosys.info) +# +# 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': '16.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_task_custom_views.xml', + 'views/project_task_template_views.xml' + ], + 'images': ['static/description/banner.png'], + '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..6e70e94c8 --- /dev/null +++ b/project_tasks_from_templates/doc/RELEASE_NOTES.md @@ -0,0 +1,7 @@ +## Module + +#### 06.11.2023 +#### Version 16.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..692071400 --- /dev/null +++ b/project_tasks_from_templates/models/__init__.py @@ -0,0 +1,24 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies(). +# Author: Anfas Faisal K (odoo@cybrosys.info) +# +# 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_task_custom +from . import project_task_template 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..5d0a30ac8 --- /dev/null +++ b/project_tasks_from_templates/models/project_project.py @@ -0,0 +1,74 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies(). +# Author: Anfas Faisal K (odoo@cybrosys.info) +# +# 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): + """ 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) diff --git a/project_tasks_from_templates/models/project_task_custom.py b/project_tasks_from_templates/models/project_task_custom.py new file mode 100644 index 000000000..2d7eb3736 --- /dev/null +++ b/project_tasks_from_templates/models/project_task_custom.py @@ -0,0 +1,80 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies(). +# Author: Anfas Faisal K (odoo@cybrosys.info) +# +# 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 ProjectTaskCustom(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.task.custom' + _description = 'Project Task Custom' + + 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.task.custom', string='Parent Task', index=True, + help='Select the parent task, if any.') + child_ids = fields.One2many( + 'project.task.custom', 'parent_id', string='Sub-Tasks', + help='List of sub-tasks, if any.') + show_tasks_page = fields.Boolean( + compute='_compute_show_tasks_page', + string="Show Tasks Page", + readonly=False) + + 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.task.custom', + 'res_id': self.id, + 'type': 'ir.actions.act_window', + 'context': self._context + } + + def _compute_show_tasks_page(self): + """ Compute function to determine whether Sub-Tasks are enabled. + This method computes the value of the 'show_tasks_page' field for each + record based on whether Sub-Tasks are enabled or not. If Sub-Tasks + are enabled, 'show_tasks_page' is set to True, allowing the display + of Sub-Tasks. If Sub-Tasks are not enabled, 'show_tasks_page' is set + to False. + """ + for task in self: + task.show_tasks_page = self.env.user.has_group( + 'project.group_subtask_project') 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..a8c2f3bd6 --- /dev/null +++ b/project_tasks_from_templates/models/project_task_template.py @@ -0,0 +1,35 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies(). +# Author: Anfas Faisal K (odoo@cybrosys.info) +# +# 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.task.custom', 'project_template_id', + string='Tasks', + help='List of the tasks associated with this template.') 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..17f7af79d --- /dev/null +++ b/project_tasks_from_templates/security/ir.model.access.csv @@ -0,0 +1,3 @@ +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_task_custom_manager,access.project.task.custom.manager,model_project_task_custom,project.group_project_manager,1,1,1,1 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/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/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/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/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/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/logo.png b/project_tasks_from_templates/static/description/assets/icons/logo.png new file mode 100644 index 000000000..478462d3e Binary files /dev/null and b/project_tasks_from_templates/static/description/assets/icons/logo.png differ 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/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.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/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/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/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/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/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/misc/categories.png b/project_tasks_from_templates/static/description/assets/misc/categories.png new file mode 100644 index 000000000..bedf1e0b1 Binary files /dev/null and b/project_tasks_from_templates/static/description/assets/misc/categories.png differ diff --git a/project_tasks_from_templates/static/description/assets/misc/check-box.png b/project_tasks_from_templates/static/description/assets/misc/check-box.png new file mode 100644 index 000000000..42caf24b9 Binary files /dev/null and b/project_tasks_from_templates/static/description/assets/misc/check-box.png differ diff --git a/project_tasks_from_templates/static/description/assets/misc/compass.png b/project_tasks_from_templates/static/description/assets/misc/compass.png new file mode 100644 index 000000000..d5fed8faa Binary files /dev/null and b/project_tasks_from_templates/static/description/assets/misc/compass.png differ diff --git a/project_tasks_from_templates/static/description/assets/misc/corporate.png b/project_tasks_from_templates/static/description/assets/misc/corporate.png new file mode 100644 index 000000000..2eb13edbf Binary files /dev/null and b/project_tasks_from_templates/static/description/assets/misc/corporate.png differ diff --git a/project_tasks_from_templates/static/description/assets/misc/customer-support.png b/project_tasks_from_templates/static/description/assets/misc/customer-support.png new file mode 100644 index 000000000..79efc72ed Binary files /dev/null and b/project_tasks_from_templates/static/description/assets/misc/customer-support.png differ diff --git a/project_tasks_from_templates/static/description/assets/misc/cybrosys-logo.png b/project_tasks_from_templates/static/description/assets/misc/cybrosys-logo.png new file mode 100644 index 000000000..cc3cc0ccf Binary files /dev/null and b/project_tasks_from_templates/static/description/assets/misc/cybrosys-logo.png differ diff --git a/project_tasks_from_templates/static/description/assets/misc/features.png b/project_tasks_from_templates/static/description/assets/misc/features.png new file mode 100644 index 000000000..b41769f77 Binary files /dev/null and b/project_tasks_from_templates/static/description/assets/misc/features.png differ diff --git a/project_tasks_from_templates/static/description/assets/misc/logo.png b/project_tasks_from_templates/static/description/assets/misc/logo.png new file mode 100644 index 000000000..478462d3e Binary files /dev/null and b/project_tasks_from_templates/static/description/assets/misc/logo.png differ diff --git a/project_tasks_from_templates/static/description/assets/misc/pictures.png b/project_tasks_from_templates/static/description/assets/misc/pictures.png new file mode 100644 index 000000000..56d255fe9 Binary files /dev/null and b/project_tasks_from_templates/static/description/assets/misc/pictures.png differ diff --git a/project_tasks_from_templates/static/description/assets/misc/pie-chart.png b/project_tasks_from_templates/static/description/assets/misc/pie-chart.png new file mode 100644 index 000000000..426e05244 Binary files /dev/null and b/project_tasks_from_templates/static/description/assets/misc/pie-chart.png differ diff --git a/project_tasks_from_templates/static/description/assets/misc/right-arrow.png b/project_tasks_from_templates/static/description/assets/misc/right-arrow.png new file mode 100644 index 000000000..730984a06 Binary files /dev/null and b/project_tasks_from_templates/static/description/assets/misc/right-arrow.png differ diff --git a/project_tasks_from_templates/static/description/assets/misc/star.png b/project_tasks_from_templates/static/description/assets/misc/star.png new file mode 100644 index 000000000..2eb9ab29f Binary files /dev/null and b/project_tasks_from_templates/static/description/assets/misc/star.png differ diff --git a/project_tasks_from_templates/static/description/assets/misc/support.png b/project_tasks_from_templates/static/description/assets/misc/support.png new file mode 100644 index 000000000..4f18b8b82 Binary files /dev/null and b/project_tasks_from_templates/static/description/assets/misc/support.png differ diff --git a/project_tasks_from_templates/static/description/assets/misc/whatsapp.png b/project_tasks_from_templates/static/description/assets/misc/whatsapp.png new file mode 100644 index 000000000..d513a5356 Binary files /dev/null and b/project_tasks_from_templates/static/description/assets/misc/whatsapp.png differ diff --git a/project_tasks_from_templates/static/description/assets/modules/1.png b/project_tasks_from_templates/static/description/assets/modules/1.png new file mode 100644 index 000000000..5acf9a06a Binary files /dev/null and b/project_tasks_from_templates/static/description/assets/modules/1.png differ diff --git a/project_tasks_from_templates/static/description/assets/modules/2.png b/project_tasks_from_templates/static/description/assets/modules/2.png new file mode 100644 index 000000000..8ab7a1345 Binary files /dev/null and b/project_tasks_from_templates/static/description/assets/modules/2.png differ diff --git a/project_tasks_from_templates/static/description/assets/modules/3.png b/project_tasks_from_templates/static/description/assets/modules/3.png new file mode 100644 index 000000000..fa5c4077b Binary files /dev/null and b/project_tasks_from_templates/static/description/assets/modules/3.png differ diff --git a/project_tasks_from_templates/static/description/assets/modules/4.png b/project_tasks_from_templates/static/description/assets/modules/4.png new file mode 100644 index 000000000..bc5648b1a Binary files /dev/null and b/project_tasks_from_templates/static/description/assets/modules/4.png differ diff --git a/project_tasks_from_templates/static/description/assets/modules/5.png b/project_tasks_from_templates/static/description/assets/modules/5.png new file mode 100644 index 000000000..f8aaeb32c Binary files /dev/null and b/project_tasks_from_templates/static/description/assets/modules/5.png differ diff --git a/project_tasks_from_templates/static/description/assets/modules/6.png b/project_tasks_from_templates/static/description/assets/modules/6.png new file mode 100644 index 000000000..06d73ee7f Binary files /dev/null and b/project_tasks_from_templates/static/description/assets/modules/6.png differ diff --git a/project_tasks_from_templates/static/description/assets/screenshots/1.png b/project_tasks_from_templates/static/description/assets/screenshots/1.png new file mode 100644 index 000000000..a42ebfed5 Binary files /dev/null and b/project_tasks_from_templates/static/description/assets/screenshots/1.png differ diff --git a/project_tasks_from_templates/static/description/assets/screenshots/10.png b/project_tasks_from_templates/static/description/assets/screenshots/10.png new file mode 100644 index 000000000..20697b7f0 Binary files /dev/null and b/project_tasks_from_templates/static/description/assets/screenshots/10.png differ diff --git a/project_tasks_from_templates/static/description/assets/screenshots/11.png b/project_tasks_from_templates/static/description/assets/screenshots/11.png new file mode 100644 index 000000000..9458b1810 Binary files /dev/null and b/project_tasks_from_templates/static/description/assets/screenshots/11.png differ diff --git a/project_tasks_from_templates/static/description/assets/screenshots/12.png b/project_tasks_from_templates/static/description/assets/screenshots/12.png new file mode 100644 index 000000000..f450d70d6 Binary files /dev/null and b/project_tasks_from_templates/static/description/assets/screenshots/12.png differ diff --git a/project_tasks_from_templates/static/description/assets/screenshots/13.png b/project_tasks_from_templates/static/description/assets/screenshots/13.png new file mode 100644 index 000000000..990596ca6 Binary files /dev/null and b/project_tasks_from_templates/static/description/assets/screenshots/13.png differ diff --git a/project_tasks_from_templates/static/description/assets/screenshots/2.png b/project_tasks_from_templates/static/description/assets/screenshots/2.png new file mode 100644 index 000000000..fe720e11a Binary files /dev/null and b/project_tasks_from_templates/static/description/assets/screenshots/2.png differ diff --git a/project_tasks_from_templates/static/description/assets/screenshots/3.png b/project_tasks_from_templates/static/description/assets/screenshots/3.png new file mode 100644 index 000000000..1cbd20e92 Binary files /dev/null and b/project_tasks_from_templates/static/description/assets/screenshots/3.png differ diff --git a/project_tasks_from_templates/static/description/assets/screenshots/4.png b/project_tasks_from_templates/static/description/assets/screenshots/4.png new file mode 100644 index 000000000..6ae42e6ac Binary files /dev/null and b/project_tasks_from_templates/static/description/assets/screenshots/4.png differ diff --git a/project_tasks_from_templates/static/description/assets/screenshots/5.png b/project_tasks_from_templates/static/description/assets/screenshots/5.png new file mode 100644 index 000000000..5a58c2b28 Binary files /dev/null and b/project_tasks_from_templates/static/description/assets/screenshots/5.png differ diff --git a/project_tasks_from_templates/static/description/assets/screenshots/6.png b/project_tasks_from_templates/static/description/assets/screenshots/6.png new file mode 100644 index 000000000..80d732695 Binary files /dev/null and b/project_tasks_from_templates/static/description/assets/screenshots/6.png differ diff --git a/project_tasks_from_templates/static/description/assets/screenshots/8.png b/project_tasks_from_templates/static/description/assets/screenshots/8.png new file mode 100644 index 000000000..64ba90929 Binary files /dev/null and b/project_tasks_from_templates/static/description/assets/screenshots/8.png differ diff --git a/project_tasks_from_templates/static/description/assets/screenshots/9.png b/project_tasks_from_templates/static/description/assets/screenshots/9.png new file mode 100644 index 000000000..0b4614a67 Binary files /dev/null and b/project_tasks_from_templates/static/description/assets/screenshots/9.png differ diff --git a/project_tasks_from_templates/static/description/assets/screenshots/hero.gif b/project_tasks_from_templates/static/description/assets/screenshots/hero.gif new file mode 100644 index 000000000..a1e06d4e4 Binary files /dev/null and b/project_tasks_from_templates/static/description/assets/screenshots/hero.gif differ diff --git a/project_tasks_from_templates/static/description/banner.png b/project_tasks_from_templates/static/description/banner.png new file mode 100644 index 000000000..1f51895f9 Binary files /dev/null and b/project_tasks_from_templates/static/description/banner.png 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..a5cc55e55 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..68d5bdda9 --- /dev/null +++ b/project_tasks_from_templates/static/description/index.html @@ -0,0 +1,546 @@ +
+ +
+ +
+
+ Community +
+
+ Enterprise +
+
+ Odoo.sh +
+
+
+ +
+
+
+ +

Project Templates

+

This App Allows Your Project Team To Create Project Template

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

Explore This Module

+
+ + + + + +
+
+ +
+

+ Overview +

+
+ +
+
+ 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. +
+
+ + + +
+
+ +
+

+ Features +

+
+ +
+
+
+ + Community & Enterprise Support. +
+
+ + Allows to create project from project template. +
+
+ +
+ + Multiple levels of tasks and sub tasks from template. +
+
+ + + +
+
+ +
+

+ Screenshots +

+
+ +
+
+

+ Project -> Configuration -> Project Templates +

+

+ When you install the module, an extra menu named Project Templates can be seen under the Configuration menu of Project. +

+ +
+
+

+ Create a New Project Template +

+

+ Click NEW to create a Project Template. +

+ +
+
+

+ Specify the Template name and add Tasks. +

+

+ Define a Template name and create Tasks for it. +

+ +
+
+

+ Sub Tasks +

+

+ Enable "Sub-tasks" in Settings

+ +
+
+

+ Project Template Task View +

+

+ In this view, You can click on Add a line to add Sub-tasks. +

+ +
+
+

+ By Enabling "Sub Tasks" in Settings helps to create multiple levels of sub-tasks for specific tasks. +

+ +
+
+

+ Project Templates List View +

+

+ In this view, you can easily browse and view various project templates. +

+ +
+
+

+ Create Project. +

+

+ Using the NEW Button Create Project +

+ +
+
+

+ Choose the Project Template. +

+

+ Select the Project Template and Click on the CREATE PROJECT FROM TEMPLATE to Create a Project using the Project Template. +

+ +
+
+

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

+ +
+

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

+ +
+

+ Tasks -> Sub-tasks +

+

+ Tasks that Include Sub-Tasks. +

+ +
+
+ + + +
+
+ +
+

+ Related Products +

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

+ Our Services +

+
+ +
+
+
+
+ +
+
+ Odoo Customization +
+
+
+
+ +
+
+ Odoo Implementation +
+
+
+
+ +
+
+ Odoo Support +
+
+
+
+ +
+
+ Hire Odoo Developer +
+
+
+
+ +
+
+ Odoo Integration +
+
+
+
+ +
+
+ Odoo Migration +
+
+
+
+ +
+
+ Odoo Consultancy +
+
+
+
+ +
+
+ Odoo Implementation +
+
+
+
+ +
+
+ Odoo Licensing Consultancy +
+
+
+
+ + + +
+
+ +
+

+ Our Industries +

+
+ +
+
+
+
+ +
+ Trading +
+

+ Easily procure and sell your products +

+
+
+
+
+ +
+ POS +
+

+ Easy configuration and convivial experience +

+
+
+
+
+ +
+ Education +
+

+ A platform for educational management +

+
+
+
+
+ +
+ Manufacturing +
+

+ Plan, track and schedule your operations +

+
+
+
+
+ +
+ E-commerce & Website +
+

+ Mobile friendly, awe-inspiring product pages +

+
+
+
+
+ +
+ Service Management +
+

+ Keep track of services and invoice +

+
+
+
+
+ +
+ Restaurant +
+

+ Run your bar or restaurant methodically +

+
+
+
+
+ +
+ Hotel Management +
+

+ An all-inclusive hotel management application +

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

+ Support +

+
+ +
+
+
+
+
+ +
+
+

Need Help?

+

Got questions or need help? Get in touch.

+ +

odoo@cybrosys.com

+
+
+
+
+
+
+
+ +
+
+

WhatsApp

+

Say hi to us on WhatsApp!

+ +

+91 86068 27707

+
+
+
+
+
+
+
+ +
+
+
+ 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..54ffc1bb8 --- /dev/null +++ b/project_tasks_from_templates/views/project_project_views.xml @@ -0,0 +1,28 @@ + + + + + project.project.view.form.inherit.project.tasks.from.templates + project.project + + + +
+ + +
+
+
+ + + project.project.view.form.inherit.project.tasks.from.templates + project.project + + + +