diff --git a/project_tasks_from_templates/README.rst b/project_tasks_from_templates/README.rst new file mode 100755 index 000000000..e2e16227e --- /dev/null +++ b/project_tasks_from_templates/README.rst @@ -0,0 +1,54 @@ +.. 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 (V15) Ajmunnisa KP, + (V16) Anfas Faisal K, + (V17) Farhana Jahan PT, + 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..2ad5188e6 --- /dev/null +++ b/project_tasks_from_templates/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-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..10c357e22 --- /dev/null +++ b/project_tasks_from_templates/__manifest__.py @@ -0,0 +1,50 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-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': '17.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_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..722e33ddc --- /dev/null +++ b/project_tasks_from_templates/doc/RELEASE_NOTES.md @@ -0,0 +1,5 @@ +## Module +#### 09.01.2024 +#### Version 17.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..8b8957677 --- /dev/null +++ b/project_tasks_from_templates/models/__init__.py @@ -0,0 +1,24 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-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_sub_task +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..823de2be8 --- /dev/null +++ b/project_tasks_from_templates/models/project_project.py @@ -0,0 +1,74 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-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): + """ 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_sub_task.py b/project_tasks_from_templates/models/project_sub_task.py new file mode 100644 index 000000000..a7a39a29b --- /dev/null +++ b/project_tasks_from_templates/models/project_sub_task.py @@ -0,0 +1,79 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-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 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', + 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.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..9e67699e9 --- /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) 2024-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.') 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..cc697a045 --- /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_sub_task_manager,access.project.sub.task.manager,model_project_sub_task,project.group_project_manager,1,1,1,1 diff --git a/project_tasks_from_templates/static/description/assets/icons/capture (1).png b/project_tasks_from_templates/static/description/assets/icons/capture (1).png new file mode 100644 index 000000000..8824deafc Binary files /dev/null and b/project_tasks_from_templates/static/description/assets/icons/capture (1).png differ 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/img.png b/project_tasks_from_templates/static/description/assets/icons/img.png new file mode 100644 index 000000000..70197f477 Binary files /dev/null and b/project_tasks_from_templates/static/description/assets/icons/img.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/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/photo-capture.png b/project_tasks_from_templates/static/description/assets/icons/photo-capture.png new file mode 100644 index 000000000..06c111758 Binary files /dev/null and b/project_tasks_from_templates/static/description/assets/icons/photo-capture.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/Cybrosys R.png b/project_tasks_from_templates/static/description/assets/misc/Cybrosys R.png new file mode 100644 index 000000000..da4058087 Binary files /dev/null and b/project_tasks_from_templates/static/description/assets/misc/Cybrosys R.png differ diff --git a/project_tasks_from_templates/static/description/assets/misc/email.svg b/project_tasks_from_templates/static/description/assets/misc/email.svg new file mode 100644 index 000000000..15291cdc3 --- /dev/null +++ b/project_tasks_from_templates/static/description/assets/misc/email.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/project_tasks_from_templates/static/description/assets/misc/phone.svg b/project_tasks_from_templates/static/description/assets/misc/phone.svg new file mode 100644 index 000000000..b7bd7f251 --- /dev/null +++ b/project_tasks_from_templates/static/description/assets/misc/phone.svg @@ -0,0 +1,3 @@ + + + diff --git a/project_tasks_from_templates/static/description/assets/misc/star (1) 2.svg b/project_tasks_from_templates/static/description/assets/misc/star (1) 2.svg new file mode 100644 index 000000000..5ae9f507a --- /dev/null +++ b/project_tasks_from_templates/static/description/assets/misc/star (1) 2.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/project_tasks_from_templates/static/description/assets/misc/support (1) 1.svg b/project_tasks_from_templates/static/description/assets/misc/support (1) 1.svg new file mode 100644 index 000000000..7d37a8f30 --- /dev/null +++ b/project_tasks_from_templates/static/description/assets/misc/support (1) 1.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/project_tasks_from_templates/static/description/assets/misc/support-email.svg b/project_tasks_from_templates/static/description/assets/misc/support-email.svg new file mode 100644 index 000000000..eb70370d6 --- /dev/null +++ b/project_tasks_from_templates/static/description/assets/misc/support-email.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/project_tasks_from_templates/static/description/assets/misc/tick-mark.svg b/project_tasks_from_templates/static/description/assets/misc/tick-mark.svg new file mode 100644 index 000000000..2dbb40187 --- /dev/null +++ b/project_tasks_from_templates/static/description/assets/misc/tick-mark.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/project_tasks_from_templates/static/description/assets/misc/whatsapp 1.svg b/project_tasks_from_templates/static/description/assets/misc/whatsapp 1.svg new file mode 100644 index 000000000..0bfaf8fc6 --- /dev/null +++ b/project_tasks_from_templates/static/description/assets/misc/whatsapp 1.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/project_tasks_from_templates/static/description/assets/misc/whatsapp.svg b/project_tasks_from_templates/static/description/assets/misc/whatsapp.svg new file mode 100644 index 000000000..b618aea1d --- /dev/null +++ b/project_tasks_from_templates/static/description/assets/misc/whatsapp.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/project_tasks_from_templates/static/description/assets/modules/1.jpg b/project_tasks_from_templates/static/description/assets/modules/1.jpg new file mode 100644 index 000000000..e257ddb23 Binary files /dev/null and b/project_tasks_from_templates/static/description/assets/modules/1.jpg 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..164eb62c7 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..57eebc5b2 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 100755 index 000000000..c7d2c5117 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..5acf9a06a 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..1f51895f9 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..003acdc33 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/2.png b/project_tasks_from_templates/static/description/assets/screenshots/2.png new file mode 100644 index 000000000..4d9f41b89 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..54af5dc14 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..6db52cae5 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..479e6d778 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..87a033115 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/7.png b/project_tasks_from_templates/static/description/assets/screenshots/7.png new file mode 100644 index 000000000..41ed71414 Binary files /dev/null and b/project_tasks_from_templates/static/description/assets/screenshots/7.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..333ce533a 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/hero.gif b/project_tasks_from_templates/static/description/assets/screenshots/hero.gif new file mode 100644 index 000000000..e38d0e0b9 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.jpg b/project_tasks_from_templates/static/description/banner.jpg new file mode 100644 index 000000000..878810bd4 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..144f4b3f4 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..1fd71aa7c --- /dev/null +++ b/project_tasks_from_templates/static/description/index.html @@ -0,0 +1,755 @@ + + + + + + + Odoo App 3 Index + + + + + + + + +
+
+
+
+
+ +
+
+
+ Community +
+
+ Enterprise +
+
+ Odoo.sh +
+
+
+
+
+
+

+ Project Templates

+

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

+
+ +
+
+
+
+
+

+ Key Highlights +

+
+
+
+
+
+ +
+
+

+ Project Template.

+

Allows to + create Project from Project Template. +

+
+
+
+
+
+
+ +
+
+

+ Tasks and Sub-tasks

+

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

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

+ Project -> Configuration -> Project + Templates. + Create a new Project Templates +

+
+
+
+
+
+
+ +
+
+

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

+ +
+
+
+
+
+
+ +
+
+

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

+
+
+
+
+
+
+ +
+
+

+ 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 + Sub-tasks, as shown in the screenshot.

+
+
+
+
+
+
+ +
+
+

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

+
+
+
+
+
+
+
    +
  • + Allows to create + project from project template. +
  • +
  • + Multiple levels + of tasks and sub tasks from template. +
      +
    • +
    • +
    +
  • + +
+
+
+
+
+
+
Version + 17.0.1.0.0|Released on:09th Jan 2024 +
+

+ + Initial Commit for Project Templates.

+
+
+
+
+
+
+
+

+ Related Products

+
+
+ +
+
+

+ Our Services

+ +
+
+
+
+
+
+
+
+ service-icon +
+
+

Odoo + Customization

+
+
+
+
+
+
+ service-icon +
+
+

Odoo + Implementation

+
+
+
+
+
+
+ service-icon +
+
+

Odoo + Support

+
+
+
+
+
+
+ service-icon +
+
+

Hire + Odoo Developer

+
+
+
+
+ +
+
+ service-icon +
+
+

Odoo + Integration

+
+
+
+
+
+
+ service-icon +
+
+

Odoo + Migration

+
+
+
+
+
+
+ service-icon +
+
+

Odoo + Consultancy

+
+
+
+
+
+
+ service-icon +
+
+

Odoo + Implementation

+
+
+
+
+
+
+ service-icon +
+
+

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 + 99456767686 +
+
+
+
+
+
+
+
+
+ + + + + + 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..95548debe --- /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 + + + +