diff --git a/project_management_sprint/README.rst b/project_management_sprint/README.rst new file mode 100644 index 000000000..f6451e4ab --- /dev/null +++ b/project_management_sprint/README.rst @@ -0,0 +1,48 @@ +.. 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 Sprint +============== +This module adds sprint functionality to the Odoo Project module, enabling efficient task management within fixed timeframes. + +Configuration +============= +* No additional configurations needed + +Company +------- +* `Cybrosys Techno Solutions `__ + +License +------- +Affero General Public License, Version 3 (AGPL v3). +(https://www.gnu.org/licenses/agpl-3.0-standalone.html) + +Credits +------- +* Developers : (V16) Bhagyadev KP, + (V17) Aysha Shalin, + 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_management_sprint/__init__.py b/project_management_sprint/__init__.py new file mode 100644 index 000000000..c3924c90a --- /dev/null +++ b/project_management_sprint/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Aysha Shalin (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_management_sprint/__manifest__.py b/project_management_sprint/__manifest__.py new file mode 100644 index 000000000..02a617b90 --- /dev/null +++ b/project_management_sprint/__manifest__.py @@ -0,0 +1,49 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Aysha Shalin (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 Sprint', + 'version': '17.0.1.0.0', + 'category': 'Project', + 'summary': """This app adds sprint functionality to the Odoo Project module, + enabling efficient task management within fixed timeframes.""", + 'description': """This module enables the sprint functionality, + inspired by Jira software, into the project module of Odoo. Sprints, fixed + time periods during which teams tackle tasks from their product backlog, are + efficiently managed within the Odoo environment.""", + '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_sprint_views.xml', + 'views/project_project_views.xml', + 'views/project_task_views.xml', + ], + 'images': ['static/description/banner.png'], + 'license': 'AGPL-3', + 'installable': True, + 'auto_install': False, + 'application': False, +} + diff --git a/project_management_sprint/doc/RELEASE_NOTES.md b/project_management_sprint/doc/RELEASE_NOTES.md new file mode 100644 index 000000000..22b3c65d8 --- /dev/null +++ b/project_management_sprint/doc/RELEASE_NOTES.md @@ -0,0 +1,6 @@ +## Module + +#### 03.04.2024 +#### Version 17.0.1.0.0 +##### ADD +- Initial Commit for Project Sprint diff --git a/project_management_sprint/models/__init__.py b/project_management_sprint/models/__init__.py new file mode 100644 index 000000000..cfb998204 --- /dev/null +++ b/project_management_sprint/models/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Aysha Shalin (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, project_sprint, project_task diff --git a/project_management_sprint/models/project_project.py b/project_management_sprint/models/project_project.py new file mode 100644 index 000000000..6844333bd --- /dev/null +++ b/project_management_sprint/models/project_project.py @@ -0,0 +1,38 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Aysha Shalin (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 + + +class ProjectProject(models.Model): + """ Inheriting project_project model to add sprint features """ + _inherit = 'project.project' + + def action_get_sprint(self): + """ Getting sprint inside the project """ + return { + 'type': 'ir.actions.act_window', + 'name': 'Sprints', + 'view_mode': 'tree,form', + 'res_model': 'project.sprint', + 'context': {'default_project_id': self.id}, + 'domain': [('project_id', '=', self.id)], + } diff --git a/project_management_sprint/models/project_sprint.py b/project_management_sprint/models/project_sprint.py new file mode 100644 index 000000000..da402b2fd --- /dev/null +++ b/project_management_sprint/models/project_sprint.py @@ -0,0 +1,91 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Aysha Shalin (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 ProjectSprint(models.Model): + """ Sprint in Project """ + _name = 'project.sprint' + _inherit = 'mail.thread' + _description = 'Project Sprint' + + name = fields.Char(string="Sprint Name", help="Name of the sprint") + sprint_goal = fields.Text(string="Goal", help="Goal of the sprint") + start_date = fields.Datetime(string="Start Date", help="Sprint start date") + end_date = fields.Datetime(string="End Date", help="Sprint end date") + project_id = fields.Many2one('project.project', readonly=True, + help="Respective Project") + state = fields.Selection(string="State", + selection=[('to_start', 'To start'), + ('ongoing', 'Ongoing'), + ('completed', 'Completed')], + default='to_start', help="State of the sprint") + + def action_get_tasks(self): + """ Sprint added tasks """ + return { + 'type': 'ir.actions.act_window', + 'name': 'Tasks', + 'view_mode': 'kanban', + 'res_model': 'project.task', + 'views': [[False, 'kanban'], [False, 'tree'], [False, 'form']], + 'domain': [('project_id', '=', self.project_id.id), + ('sprint_id', '=', self.id)], + 'context': "{'create': False}" + } + + def action_get_backlogs(self): + """ Tasks without any sprint """ + return { + 'type': 'ir.actions.act_window', + 'name': 'Backlogs', + 'view_mode': 'kanban', + 'res_model': 'project.task', + 'views': [[False, 'kanban'], [False, 'tree'], [False, 'form']], + 'domain': [('project_id', '=', self.project_id.id), + ('sprint_id', '=', False)], + 'context': "{'create': False}" + } + + def action_get_all_tasks(self): + """ All tasks in the project """ + return { + 'type': 'ir.actions.act_window', + 'name': 'All Tasks', + 'view_mode': 'kanban', + 'res_model': 'project.task', + 'views': [[False, 'kanban'], [False, 'tree'], [False, 'form']], + 'domain': [('project_id', '=', self.project_id.id)], + 'context': "{'create': False}" + } + + def action_start_sprint(self): + """ Sprint state to ongoing """ + self.write({'state': 'ongoing'}) + + def action_finish_sprint(self): + """ Sprint state to completed """ + self.write({'state': 'completed'}) + + def action_reset_states(self): + """ Sprint state to to_start """ + self.write({'state': 'to_start'}) diff --git a/project_management_sprint/models/project_task.py b/project_management_sprint/models/project_task.py new file mode 100644 index 000000000..a55a60a2d --- /dev/null +++ b/project_management_sprint/models/project_task.py @@ -0,0 +1,45 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Aysha Shalin (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 api, fields, models, _ +from odoo.exceptions import UserError + + +class ProjectTask(models.Model): + """ Inheriting project_task model to add sprint features """ + _inherit = 'project.task' + + sprint_id = fields.Many2one('project.sprint', string="Sprint", + help="Sprint", + domain="[('project_id', '=', project_id)]") + linked_issue = fields.Selection(string="Linked issue", selection=[ + ('is_blocked_by', 'Is blocked by')], help="Linked Issue") + issue_task_id = fields.Many2one('project.task', string="Task", + help="Task") + + @api.constrains('stage_id') + def _check_stage_id(self): + """ Blocking stage change when there is a linked issue """ + if self.linked_issue: + raise UserError(_( + "This task is linked to another task and cannot be modified.")) + else: + pass diff --git a/project_management_sprint/security/ir.model.access.csv b/project_management_sprint/security/ir.model.access.csv new file mode 100644 index 000000000..a154f1971 --- /dev/null +++ b/project_management_sprint/security/ir.model.access.csv @@ -0,0 +1,2 @@ +id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink +access_project_sprint_user,access.project.sprint.user,model_project_sprint,base.group_user,1,1,1,1 diff --git a/project_management_sprint/static/description/assets/icons/capture (1).png b/project_management_sprint/static/description/assets/icons/capture (1).png new file mode 100644 index 000000000..8824deafc Binary files /dev/null and b/project_management_sprint/static/description/assets/icons/capture (1).png differ diff --git a/project_management_sprint/static/description/assets/icons/check.png b/project_management_sprint/static/description/assets/icons/check.png new file mode 100644 index 000000000..c8e85f51d Binary files /dev/null and b/project_management_sprint/static/description/assets/icons/check.png differ diff --git a/project_management_sprint/static/description/assets/icons/chevron.png b/project_management_sprint/static/description/assets/icons/chevron.png new file mode 100644 index 000000000..2089293d6 Binary files /dev/null and b/project_management_sprint/static/description/assets/icons/chevron.png differ diff --git a/project_management_sprint/static/description/assets/icons/cogs.png b/project_management_sprint/static/description/assets/icons/cogs.png new file mode 100644 index 000000000..95d0bad62 Binary files /dev/null and b/project_management_sprint/static/description/assets/icons/cogs.png differ diff --git a/project_management_sprint/static/description/assets/icons/consultation.png b/project_management_sprint/static/description/assets/icons/consultation.png new file mode 100644 index 000000000..8319d4baa Binary files /dev/null and b/project_management_sprint/static/description/assets/icons/consultation.png differ diff --git a/project_management_sprint/static/description/assets/icons/ecom-black.png b/project_management_sprint/static/description/assets/icons/ecom-black.png new file mode 100644 index 000000000..a9385ff13 Binary files /dev/null and b/project_management_sprint/static/description/assets/icons/ecom-black.png differ diff --git a/project_management_sprint/static/description/assets/icons/education-black.png b/project_management_sprint/static/description/assets/icons/education-black.png new file mode 100644 index 000000000..3eb09b27b Binary files /dev/null and b/project_management_sprint/static/description/assets/icons/education-black.png differ diff --git a/project_management_sprint/static/description/assets/icons/hotel-black.png b/project_management_sprint/static/description/assets/icons/hotel-black.png new file mode 100644 index 000000000..130f613be Binary files /dev/null and b/project_management_sprint/static/description/assets/icons/hotel-black.png differ diff --git a/project_management_sprint/static/description/assets/icons/img.png b/project_management_sprint/static/description/assets/icons/img.png new file mode 100644 index 000000000..70197f477 Binary files /dev/null and b/project_management_sprint/static/description/assets/icons/img.png differ diff --git a/project_management_sprint/static/description/assets/icons/license.png b/project_management_sprint/static/description/assets/icons/license.png new file mode 100644 index 000000000..a5869797e Binary files /dev/null and b/project_management_sprint/static/description/assets/icons/license.png differ diff --git a/project_management_sprint/static/description/assets/icons/lifebuoy.png b/project_management_sprint/static/description/assets/icons/lifebuoy.png new file mode 100644 index 000000000..658d56ccc Binary files /dev/null and b/project_management_sprint/static/description/assets/icons/lifebuoy.png differ diff --git a/project_management_sprint/static/description/assets/icons/manufacturing-black.png b/project_management_sprint/static/description/assets/icons/manufacturing-black.png new file mode 100644 index 000000000..697eb0e9f Binary files /dev/null and b/project_management_sprint/static/description/assets/icons/manufacturing-black.png differ diff --git a/project_management_sprint/static/description/assets/icons/photo-capture.png b/project_management_sprint/static/description/assets/icons/photo-capture.png new file mode 100644 index 000000000..06c111758 Binary files /dev/null and b/project_management_sprint/static/description/assets/icons/photo-capture.png differ diff --git a/project_management_sprint/static/description/assets/icons/pos-black.png b/project_management_sprint/static/description/assets/icons/pos-black.png new file mode 100644 index 000000000..97c0f90c1 Binary files /dev/null and b/project_management_sprint/static/description/assets/icons/pos-black.png differ diff --git a/project_management_sprint/static/description/assets/icons/puzzle.png b/project_management_sprint/static/description/assets/icons/puzzle.png new file mode 100644 index 000000000..65cf854e7 Binary files /dev/null and b/project_management_sprint/static/description/assets/icons/puzzle.png differ diff --git a/project_management_sprint/static/description/assets/icons/restaurant-black.png b/project_management_sprint/static/description/assets/icons/restaurant-black.png new file mode 100644 index 000000000..4a35eb939 Binary files /dev/null and b/project_management_sprint/static/description/assets/icons/restaurant-black.png differ diff --git a/project_management_sprint/static/description/assets/icons/service-black.png b/project_management_sprint/static/description/assets/icons/service-black.png new file mode 100644 index 000000000..301ab51cb Binary files /dev/null and b/project_management_sprint/static/description/assets/icons/service-black.png differ diff --git a/project_management_sprint/static/description/assets/icons/trading-black.png b/project_management_sprint/static/description/assets/icons/trading-black.png new file mode 100644 index 000000000..9398ba2f1 Binary files /dev/null and b/project_management_sprint/static/description/assets/icons/trading-black.png differ diff --git a/project_management_sprint/static/description/assets/icons/training.png b/project_management_sprint/static/description/assets/icons/training.png new file mode 100644 index 000000000..884ca024d Binary files /dev/null and b/project_management_sprint/static/description/assets/icons/training.png differ diff --git a/project_management_sprint/static/description/assets/icons/update.png b/project_management_sprint/static/description/assets/icons/update.png new file mode 100644 index 000000000..ecbc5a01a Binary files /dev/null and b/project_management_sprint/static/description/assets/icons/update.png differ diff --git a/project_management_sprint/static/description/assets/icons/user.png b/project_management_sprint/static/description/assets/icons/user.png new file mode 100644 index 000000000..6ffb23d9f Binary files /dev/null and b/project_management_sprint/static/description/assets/icons/user.png differ diff --git a/project_management_sprint/static/description/assets/icons/wrench.png b/project_management_sprint/static/description/assets/icons/wrench.png new file mode 100644 index 000000000..6c04dea0f Binary files /dev/null and b/project_management_sprint/static/description/assets/icons/wrench.png differ diff --git a/project_management_sprint/static/description/assets/misc/Cybrosys R.png b/project_management_sprint/static/description/assets/misc/Cybrosys R.png new file mode 100644 index 000000000..da4058087 Binary files /dev/null and b/project_management_sprint/static/description/assets/misc/Cybrosys R.png differ diff --git a/project_management_sprint/static/description/assets/misc/email.svg b/project_management_sprint/static/description/assets/misc/email.svg new file mode 100644 index 000000000..15291cdc3 --- /dev/null +++ b/project_management_sprint/static/description/assets/misc/email.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/project_management_sprint/static/description/assets/misc/phone.svg b/project_management_sprint/static/description/assets/misc/phone.svg new file mode 100644 index 000000000..b7bd7f251 --- /dev/null +++ b/project_management_sprint/static/description/assets/misc/phone.svg @@ -0,0 +1,3 @@ + + + diff --git a/project_management_sprint/static/description/assets/misc/star (1) 2.svg b/project_management_sprint/static/description/assets/misc/star (1) 2.svg new file mode 100644 index 000000000..5ae9f507a --- /dev/null +++ b/project_management_sprint/static/description/assets/misc/star (1) 2.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/project_management_sprint/static/description/assets/misc/support (1) 1.svg b/project_management_sprint/static/description/assets/misc/support (1) 1.svg new file mode 100644 index 000000000..7d37a8f30 --- /dev/null +++ b/project_management_sprint/static/description/assets/misc/support (1) 1.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/project_management_sprint/static/description/assets/misc/support-email.svg b/project_management_sprint/static/description/assets/misc/support-email.svg new file mode 100644 index 000000000..eb70370d6 --- /dev/null +++ b/project_management_sprint/static/description/assets/misc/support-email.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/project_management_sprint/static/description/assets/misc/tick-mark.svg b/project_management_sprint/static/description/assets/misc/tick-mark.svg new file mode 100644 index 000000000..2dbb40187 --- /dev/null +++ b/project_management_sprint/static/description/assets/misc/tick-mark.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/project_management_sprint/static/description/assets/misc/whatsapp 1.svg b/project_management_sprint/static/description/assets/misc/whatsapp 1.svg new file mode 100644 index 000000000..0bfaf8fc6 --- /dev/null +++ b/project_management_sprint/static/description/assets/misc/whatsapp 1.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/project_management_sprint/static/description/assets/misc/whatsapp.svg b/project_management_sprint/static/description/assets/misc/whatsapp.svg new file mode 100644 index 000000000..b618aea1d --- /dev/null +++ b/project_management_sprint/static/description/assets/misc/whatsapp.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/project_management_sprint/static/description/assets/modules/print_minutes_of_meeting.png b/project_management_sprint/static/description/assets/modules/print_minutes_of_meeting.png new file mode 100644 index 000000000..1d9e21fbc Binary files /dev/null and b/project_management_sprint/static/description/assets/modules/print_minutes_of_meeting.png differ diff --git a/project_management_sprint/static/description/assets/modules/project_custom_gantt.png b/project_management_sprint/static/description/assets/modules/project_custom_gantt.png new file mode 100644 index 000000000..2ad200f9f Binary files /dev/null and b/project_management_sprint/static/description/assets/modules/project_custom_gantt.png differ diff --git a/project_management_sprint/static/description/assets/modules/project_report_pdf.png b/project_management_sprint/static/description/assets/modules/project_report_pdf.png new file mode 100644 index 000000000..84457ac0a Binary files /dev/null and b/project_management_sprint/static/description/assets/modules/project_report_pdf.png differ diff --git a/project_management_sprint/static/description/assets/modules/project_task_attachments.jpg b/project_management_sprint/static/description/assets/modules/project_task_attachments.jpg new file mode 100644 index 000000000..492b47dbe Binary files /dev/null and b/project_management_sprint/static/description/assets/modules/project_task_attachments.jpg differ diff --git a/project_management_sprint/static/description/assets/modules/project_tasks_from_templates.png b/project_management_sprint/static/description/assets/modules/project_tasks_from_templates.png new file mode 100644 index 000000000..c84c8b1c4 Binary files /dev/null and b/project_management_sprint/static/description/assets/modules/project_tasks_from_templates.png differ diff --git a/project_management_sprint/static/description/assets/modules/projects_task_checklists.png b/project_management_sprint/static/description/assets/modules/projects_task_checklists.png new file mode 100644 index 000000000..3ce71a366 Binary files /dev/null and b/project_management_sprint/static/description/assets/modules/projects_task_checklists.png differ diff --git a/project_management_sprint/static/description/assets/screenshots/1.png b/project_management_sprint/static/description/assets/screenshots/1.png new file mode 100644 index 000000000..3616f05fe Binary files /dev/null and b/project_management_sprint/static/description/assets/screenshots/1.png differ diff --git a/project_management_sprint/static/description/assets/screenshots/10.png b/project_management_sprint/static/description/assets/screenshots/10.png new file mode 100644 index 000000000..dcb0aa5ac Binary files /dev/null and b/project_management_sprint/static/description/assets/screenshots/10.png differ diff --git a/project_management_sprint/static/description/assets/screenshots/11.png b/project_management_sprint/static/description/assets/screenshots/11.png new file mode 100644 index 000000000..6ea912408 Binary files /dev/null and b/project_management_sprint/static/description/assets/screenshots/11.png differ diff --git a/project_management_sprint/static/description/assets/screenshots/12.png b/project_management_sprint/static/description/assets/screenshots/12.png new file mode 100644 index 000000000..2ac9b8a72 Binary files /dev/null and b/project_management_sprint/static/description/assets/screenshots/12.png differ diff --git a/project_management_sprint/static/description/assets/screenshots/2.png b/project_management_sprint/static/description/assets/screenshots/2.png new file mode 100644 index 000000000..99c7beca0 Binary files /dev/null and b/project_management_sprint/static/description/assets/screenshots/2.png differ diff --git a/project_management_sprint/static/description/assets/screenshots/3.png b/project_management_sprint/static/description/assets/screenshots/3.png new file mode 100644 index 000000000..8e0ce11f1 Binary files /dev/null and b/project_management_sprint/static/description/assets/screenshots/3.png differ diff --git a/project_management_sprint/static/description/assets/screenshots/4.png b/project_management_sprint/static/description/assets/screenshots/4.png new file mode 100644 index 000000000..8a879e6c2 Binary files /dev/null and b/project_management_sprint/static/description/assets/screenshots/4.png differ diff --git a/project_management_sprint/static/description/assets/screenshots/5.png b/project_management_sprint/static/description/assets/screenshots/5.png new file mode 100644 index 000000000..61f2af43a Binary files /dev/null and b/project_management_sprint/static/description/assets/screenshots/5.png differ diff --git a/project_management_sprint/static/description/assets/screenshots/6.png b/project_management_sprint/static/description/assets/screenshots/6.png new file mode 100644 index 000000000..23907983b Binary files /dev/null and b/project_management_sprint/static/description/assets/screenshots/6.png differ diff --git a/project_management_sprint/static/description/assets/screenshots/7.png b/project_management_sprint/static/description/assets/screenshots/7.png new file mode 100644 index 000000000..3fa7e8e69 Binary files /dev/null and b/project_management_sprint/static/description/assets/screenshots/7.png differ diff --git a/project_management_sprint/static/description/assets/screenshots/8.png b/project_management_sprint/static/description/assets/screenshots/8.png new file mode 100644 index 000000000..98a8fff3f Binary files /dev/null and b/project_management_sprint/static/description/assets/screenshots/8.png differ diff --git a/project_management_sprint/static/description/assets/screenshots/9.png b/project_management_sprint/static/description/assets/screenshots/9.png new file mode 100644 index 000000000..e0e898a38 Binary files /dev/null and b/project_management_sprint/static/description/assets/screenshots/9.png differ diff --git a/project_management_sprint/static/description/assets/screenshots/hero.gif b/project_management_sprint/static/description/assets/screenshots/hero.gif new file mode 100644 index 000000000..9d9d2d786 Binary files /dev/null and b/project_management_sprint/static/description/assets/screenshots/hero.gif differ diff --git a/project_management_sprint/static/description/banner.png b/project_management_sprint/static/description/banner.png new file mode 100644 index 000000000..02507eef7 Binary files /dev/null and b/project_management_sprint/static/description/banner.png differ diff --git a/project_management_sprint/static/description/icon.png b/project_management_sprint/static/description/icon.png new file mode 100644 index 000000000..0a5e979a5 Binary files /dev/null and b/project_management_sprint/static/description/icon.png differ diff --git a/project_management_sprint/static/description/index.html b/project_management_sprint/static/description/index.html new file mode 100644 index 000000000..1443ce0f3 --- /dev/null +++ b/project_management_sprint/static/description/index.html @@ -0,0 +1,688 @@ + + + + + + Odoo App 3 Index + + + + + + + + +
+
+
+
+
+ +
+
+
+ Community +
+
+ Enterprise +
+
+ Odoo.sh +
+
+
+
+
+
+

+ Project Sprint

+

+ This Module Enables Sprint Functionality to the Odoo Project Module, Enabling Efficient Task Management within Fixed Timeframes. +

+
+ +
+
+
+
+
+

Key Highlights +

+
+
+
+
+
+ +
+
+

Enables Sprint Feature in Project.

+

A Sprint is a Fixed Time Period where Teams + Complete Work from their Project Backlog. +

+
+
+
+
+
+
+ +
+
+

Create Sprint for Projects, and Add Tasks Inside Sprints.

+

Users can Initiate a Sprint within a Project, where they can Subsequently Add Tasks. +

+
+
+
+
+
+
+ +
+
+

Within the Sprint, Users have Visibility of Tasks, Backlogs, and All Tasks Associated with the Project.

+
+
+
+
+
+
+ +
+
+

Users can Link an Issue to a Task, Ensuring that the Task's Status cannot be Changed until the Linked Issue is Resolved.

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

+ Create a New Project.

+
+
+
+
+
+
+ +
+
+

+ Create Tasks for the Project.

+
+
+
+
+
+
+ +
+
+

+ Sprint Inside Project.

+
+
+
+
+
+
+ +
+
+

+ Create Sprint.

+
+
+
+
+
+
+ +
+
+

+ Adding Sprint Inside the Task.

+
+
+
+
+
+
+ +
+
+

+ Tasks, Backlogs and All tasks in Sprint.

+
+
+
+
+
+
+ +
+
+

+ Tasks in Sprint Contains the Tasks which have the Correspondent Sprint.

+
+
+
+
+
+
+ +
+
+

+ Backlogs in Sprint Contains the Tasks of the Projects which have no Sprint.

+
+
+
+
+
+
+ +
+
+

+ All Tasks in Sprint Contains all the Tasks inside the Project.

+
+
+
+
+
+
+ +
+
+

+ Start a Sprint.

+
+
+
+
+
+
+ +
+
+

+ Creating Linked issue in Task, so that this Task will be Blocked by another Task.

+
+
+
+
+
+
+ +
+
+

+ Error when Changing the Stage of Task which have Linked issue.

+
+
+
+
+
+
+
    +
  • + Generate MRP Orders from POS Orders. +
  • +
  • + Select the Products for which MRP Orders Need to be Generated. +
  • +
  • + Easily Identify MRP Orders Generated from the POS by the 'Source'. +
  • +
+
+
+
+
+
+
Version + 17.0.1.0.0|Released on:30th December 2023 +
+

+ Initial Commit for Make MRP Orders from POS.

+
+
+
+
+
+
+
+

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_management_sprint/views/project_project_views.xml b/project_management_sprint/views/project_project_views.xml new file mode 100644 index 000000000..12a968f3e --- /dev/null +++ b/project_management_sprint/views/project_project_views.xml @@ -0,0 +1,15 @@ + + + + + project.project.view.form.inherit.project.management.sprint + project.project + + + +