diff --git a/project_task_sequence_number/README.rst b/project_task_sequence_number/README.rst new file mode 100644 index 000000000..6601d3113 --- /dev/null +++ b/project_task_sequence_number/README.rst @@ -0,0 +1,57 @@ +.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg + :target: https://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 + +Project & Project Task Sequence Number +====================================== +This makes it easier to assign a specific sequence number to each project task +and project. Sequence numbers will be generated depending on it when we create +new projects and tasks. + +Depends +======= +[project] addon Odoo + +Tech +==== +* [Python] - Models +* [XML] - Odoo views + +Company +------- +* `Cybrosys Techno Solutions `__ + +License +------- +Affero General Public License, v3.0 (AGPL v3). +(https://www.gnu.org/licenses/agpl-3.0-standalone.html) + +Credits +======= +Developer: (V16):Sajna @ cybrosys + +Contacts +-------- +* Mail Contact : odoo@cybrosys.com + +Installation +============ +- www.odoo.com/documentation/16.0/setup/install.html +- Install our custom addon + +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_task_sequence_number/__init__.py b/project_task_sequence_number/__init__.py new file mode 100644 index 000000000..d46a02c17 --- /dev/null +++ b/project_task_sequence_number/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-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_task_sequence_number/__manifest__.py b/project_task_sequence_number/__manifest__.py new file mode 100644 index 000000000..4ef947446 --- /dev/null +++ b/project_task_sequence_number/__manifest__.py @@ -0,0 +1,45 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-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 & Project Task Sequence Number', + 'version': '16.0.1.0.0', + 'category': 'Project', + 'summary': 'Add dynamic sequence number for project and task.', + 'description': 'This helps to give unique sequence number to project and ' + 'project task. When we creating a new project and task the ' + 'sequence number generation will be based on it.', + 'author': 'Cybrosys Techno solutions', + 'company': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'website': 'https://www.cybrosys.com', + 'depends': ['base', 'project'], + 'data': [ + 'data/ir_sequence_project_data.xml', + 'views/project_project_views.xml', + 'views/project_task_views.xml' + ], + 'images': ['static/description/banner.png'], + 'license': 'AGPL-3', + 'installable': True, + 'application': False, + 'auto_install': False, +} diff --git a/project_task_sequence_number/data/ir_sequence_project_data.xml b/project_task_sequence_number/data/ir_sequence_project_data.xml new file mode 100644 index 000000000..a5e6ba949 --- /dev/null +++ b/project_task_sequence_number/data/ir_sequence_project_data.xml @@ -0,0 +1,21 @@ + + + + + Project Project + project.project + TRUE + PRJ/ + 4 + 1 + + + + Project Task + project.task + TRUE + TASK/ + 4 + 1 + + \ No newline at end of file diff --git a/project_task_sequence_number/doc/RELEASE_NOTES.md b/project_task_sequence_number/doc/RELEASE_NOTES.md new file mode 100644 index 000000000..8b318e562 --- /dev/null +++ b/project_task_sequence_number/doc/RELEASE_NOTES.md @@ -0,0 +1,6 @@ +## Module + +#### 27.07.2023 +#### Version 16.0.1.0.0 +#### ADD +- Initial commit for Project & Project Task Sequence Number \ No newline at end of file diff --git a/project_task_sequence_number/models/__init__.py b/project_task_sequence_number/models/__init__.py new file mode 100644 index 000000000..d9452dce3 --- /dev/null +++ b/project_task_sequence_number/models/__init__.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-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_task diff --git a/project_task_sequence_number/models/project_project.py b/project_task_sequence_number/models/project_project.py new file mode 100644 index 000000000..c79e940e3 --- /dev/null +++ b/project_task_sequence_number/models/project_project.py @@ -0,0 +1,82 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-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 api, fields, models + + +class ProjectProject(models.Model): + """Add sequence field to show the unique sequence, prefix field to specify + the prefix that need to show in sequence and task sequence field for task + entry sequence.""" + _inherit = 'project.project' + + project_prefix = fields.Char(string='Prefix', + help='specify the prefix of the project') + task_sequence_id = fields.Many2one('ir.sequence', + string='Task Entry Sequence', + help='Create a task entry entry sequence' + 'for the task for each project') + project_sequence = fields.Char(string='Project Sequence', readonly=True, + copy=False, default='New', + help='Unique sequence number of the project') + + @api.model_create_multi + def create(self, vals): + """Overwrite the function create to calculate the sequence value based + on the given prefix""" + # If the project does not have any specified prefix + for record in vals: + if not record['project_prefix']: + sequence = self.env['ir.sequence'].search([('code', '=', + 'project.project')]) + if sequence: + sequence.prefix = 'PRJ/' + # If the project have any specified prefix + else: + sequence = self.env['ir.sequence'].search([('code', '=', + 'project.project')]) + if sequence: + sequence.prefix = '%s/' % record['project_prefix'] + else: + self.env['ir.sequence'].create({ + 'name': 'Project Project', + 'implementation': 'standard', + 'code': 'project.project', + 'prefix': '%s/' % record['project_prefix'] + }) + project_task_sequence = self.env['ir.sequence'].create({ + 'name': 'Task %s' % (record['name']), + 'implementation': 'standard'}) + record['task_sequence_id'] = project_task_sequence.id + record['project_sequence'] = self.env['ir.sequence'].next_by_code( + 'project.project') + return super(ProjectProject, self).create(record) + + def write(self, vals): + """Overwrite the function to update the sequence """ + if vals.get('project_prefix'): + sequence = self.env['ir.sequence'].search([('code', '=', + 'project.project')]) + if sequence: + sequence.prefix = '%s/' % vals['project_prefix'] + vals['project_sequence'] = self.env['ir.sequence'].next_by_code( + 'project.project') + return super(ProjectProject, self).write(vals) diff --git a/project_task_sequence_number/models/project_task.py b/project_task_sequence_number/models/project_task.py new file mode 100644 index 000000000..c77040dec --- /dev/null +++ b/project_task_sequence_number/models/project_task.py @@ -0,0 +1,80 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-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 api, fields, models + + +class ProjectTask(models.Model): + """In ProjectTask class, which will add a new field for task sequence. + When we create the record, the sequence will be based on the + task_sequence.""" + _inherit = 'project.task' + + task_sequence = fields.Char(string='Task Sequence', readonly=True, + copy=False, default='New', + help='Unique sequence number of the task.') + + @api.model_create_multi + def create(self, vals): + """Overwrite the function create to calculate the sequence value based + on the given prefix""" + for records in vals: + if not records['project_id']: + if records.get('task_sequence', 'New') == 'New': + records['task_sequence'] = self.env['ir.sequence']. \ + next_by_code( + 'project.task') or 'New' + else: + project = self.env['project.project'].browse( + records['project_id']) + if project.task_sequence_id.prefix: + records['task_sequence'] = '%s/%s/%s' % \ + (project.project_sequence, + project.task_sequence_id.prefix, + self.env['ir.sequence']. + next_by_code( + 'project.task') or + 'New') + else: + records['task_sequence'] = '%s/%s' % \ + (project.project_sequence, + self.env['ir.sequence']. + next_by_code( + 'project.task') or + 'New') + return super(ProjectTask, self).create(records) + + def write(self, vals): + """Overwrite the function to update the sequence """ + if vals.get('project_id'): + project = self.env['project.project'].browse(vals.get('project_id')) + if project.task_sequence_id.prefix: + vals['task_sequence'] = '%s/%s/%s' % \ + (project.project_sequence, + project.task_sequence_id.prefix, + self.env['ir.sequence'].next_by_code( + 'project.task') or 'New') + else: + vals['task_sequence'] = '%s/%s' % (project.project_sequence, + self.env['ir.sequence']. + next_by_code('project.task') + or 'New') + return super(ProjectTask, self).write(vals) diff --git a/project_task_sequence_number/static/description/assets/icons/check.png b/project_task_sequence_number/static/description/assets/icons/check.png new file mode 100644 index 000000000..c8e85f51d Binary files /dev/null and b/project_task_sequence_number/static/description/assets/icons/check.png differ diff --git a/project_task_sequence_number/static/description/assets/icons/chevron.png b/project_task_sequence_number/static/description/assets/icons/chevron.png new file mode 100644 index 000000000..2089293d6 Binary files /dev/null and b/project_task_sequence_number/static/description/assets/icons/chevron.png differ diff --git a/project_task_sequence_number/static/description/assets/icons/cogs.png b/project_task_sequence_number/static/description/assets/icons/cogs.png new file mode 100644 index 000000000..95d0bad62 Binary files /dev/null and b/project_task_sequence_number/static/description/assets/icons/cogs.png differ diff --git a/project_task_sequence_number/static/description/assets/icons/consultation.png b/project_task_sequence_number/static/description/assets/icons/consultation.png new file mode 100644 index 000000000..8319d4baa Binary files /dev/null and b/project_task_sequence_number/static/description/assets/icons/consultation.png differ diff --git a/project_task_sequence_number/static/description/assets/icons/ecom-black.png b/project_task_sequence_number/static/description/assets/icons/ecom-black.png new file mode 100644 index 000000000..a9385ff13 Binary files /dev/null and b/project_task_sequence_number/static/description/assets/icons/ecom-black.png differ diff --git a/project_task_sequence_number/static/description/assets/icons/education-black.png b/project_task_sequence_number/static/description/assets/icons/education-black.png new file mode 100644 index 000000000..3eb09b27b Binary files /dev/null and b/project_task_sequence_number/static/description/assets/icons/education-black.png differ diff --git a/project_task_sequence_number/static/description/assets/icons/hotel-black.png b/project_task_sequence_number/static/description/assets/icons/hotel-black.png new file mode 100644 index 000000000..130f613be Binary files /dev/null and b/project_task_sequence_number/static/description/assets/icons/hotel-black.png differ diff --git a/project_task_sequence_number/static/description/assets/icons/license.png b/project_task_sequence_number/static/description/assets/icons/license.png new file mode 100644 index 000000000..a5869797e Binary files /dev/null and b/project_task_sequence_number/static/description/assets/icons/license.png differ diff --git a/project_task_sequence_number/static/description/assets/icons/lifebuoy.png b/project_task_sequence_number/static/description/assets/icons/lifebuoy.png new file mode 100644 index 000000000..658d56ccc Binary files /dev/null and b/project_task_sequence_number/static/description/assets/icons/lifebuoy.png differ diff --git a/project_task_sequence_number/static/description/assets/icons/manufacturing-black.png b/project_task_sequence_number/static/description/assets/icons/manufacturing-black.png new file mode 100644 index 000000000..697eb0e9f Binary files /dev/null and b/project_task_sequence_number/static/description/assets/icons/manufacturing-black.png differ diff --git a/project_task_sequence_number/static/description/assets/icons/pos-black.png b/project_task_sequence_number/static/description/assets/icons/pos-black.png new file mode 100644 index 000000000..97c0f90c1 Binary files /dev/null and b/project_task_sequence_number/static/description/assets/icons/pos-black.png differ diff --git a/project_task_sequence_number/static/description/assets/icons/puzzle.png b/project_task_sequence_number/static/description/assets/icons/puzzle.png new file mode 100644 index 000000000..65cf854e7 Binary files /dev/null and b/project_task_sequence_number/static/description/assets/icons/puzzle.png differ diff --git a/project_task_sequence_number/static/description/assets/icons/restaurant-black.png b/project_task_sequence_number/static/description/assets/icons/restaurant-black.png new file mode 100644 index 000000000..4a35eb939 Binary files /dev/null and b/project_task_sequence_number/static/description/assets/icons/restaurant-black.png differ diff --git a/project_task_sequence_number/static/description/assets/icons/service-black.png b/project_task_sequence_number/static/description/assets/icons/service-black.png new file mode 100644 index 000000000..301ab51cb Binary files /dev/null and b/project_task_sequence_number/static/description/assets/icons/service-black.png differ diff --git a/project_task_sequence_number/static/description/assets/icons/trading-black.png b/project_task_sequence_number/static/description/assets/icons/trading-black.png new file mode 100644 index 000000000..9398ba2f1 Binary files /dev/null and b/project_task_sequence_number/static/description/assets/icons/trading-black.png differ diff --git a/project_task_sequence_number/static/description/assets/icons/training.png b/project_task_sequence_number/static/description/assets/icons/training.png new file mode 100644 index 000000000..884ca024d Binary files /dev/null and b/project_task_sequence_number/static/description/assets/icons/training.png differ diff --git a/project_task_sequence_number/static/description/assets/icons/update.png b/project_task_sequence_number/static/description/assets/icons/update.png new file mode 100644 index 000000000..ecbc5a01a Binary files /dev/null and b/project_task_sequence_number/static/description/assets/icons/update.png differ diff --git a/project_task_sequence_number/static/description/assets/icons/user.png b/project_task_sequence_number/static/description/assets/icons/user.png new file mode 100644 index 000000000..6ffb23d9f Binary files /dev/null and b/project_task_sequence_number/static/description/assets/icons/user.png differ diff --git a/project_task_sequence_number/static/description/assets/icons/wrench.png b/project_task_sequence_number/static/description/assets/icons/wrench.png new file mode 100644 index 000000000..6c04dea0f Binary files /dev/null and b/project_task_sequence_number/static/description/assets/icons/wrench.png differ diff --git a/project_task_sequence_number/static/description/assets/misc/categories.png b/project_task_sequence_number/static/description/assets/misc/categories.png new file mode 100644 index 000000000..bedf1e0b1 Binary files /dev/null and b/project_task_sequence_number/static/description/assets/misc/categories.png differ diff --git a/project_task_sequence_number/static/description/assets/misc/check-box.png b/project_task_sequence_number/static/description/assets/misc/check-box.png new file mode 100644 index 000000000..42caf24b9 Binary files /dev/null and b/project_task_sequence_number/static/description/assets/misc/check-box.png differ diff --git a/project_task_sequence_number/static/description/assets/misc/compass.png b/project_task_sequence_number/static/description/assets/misc/compass.png new file mode 100644 index 000000000..d5fed8faa Binary files /dev/null and b/project_task_sequence_number/static/description/assets/misc/compass.png differ diff --git a/project_task_sequence_number/static/description/assets/misc/corporate.png b/project_task_sequence_number/static/description/assets/misc/corporate.png new file mode 100644 index 000000000..2eb13edbf Binary files /dev/null and b/project_task_sequence_number/static/description/assets/misc/corporate.png differ diff --git a/project_task_sequence_number/static/description/assets/misc/customer-support.png b/project_task_sequence_number/static/description/assets/misc/customer-support.png new file mode 100644 index 000000000..79efc72ed Binary files /dev/null and b/project_task_sequence_number/static/description/assets/misc/customer-support.png differ diff --git a/project_task_sequence_number/static/description/assets/misc/cybrosys-logo.png b/project_task_sequence_number/static/description/assets/misc/cybrosys-logo.png new file mode 100644 index 000000000..cc3cc0ccf Binary files /dev/null and b/project_task_sequence_number/static/description/assets/misc/cybrosys-logo.png differ diff --git a/project_task_sequence_number/static/description/assets/misc/features.png b/project_task_sequence_number/static/description/assets/misc/features.png new file mode 100644 index 000000000..b41769f77 Binary files /dev/null and b/project_task_sequence_number/static/description/assets/misc/features.png differ diff --git a/project_task_sequence_number/static/description/assets/misc/logo.png b/project_task_sequence_number/static/description/assets/misc/logo.png new file mode 100644 index 000000000..478462d3e Binary files /dev/null and b/project_task_sequence_number/static/description/assets/misc/logo.png differ diff --git a/project_task_sequence_number/static/description/assets/misc/pictures.png b/project_task_sequence_number/static/description/assets/misc/pictures.png new file mode 100644 index 000000000..56d255fe9 Binary files /dev/null and b/project_task_sequence_number/static/description/assets/misc/pictures.png differ diff --git a/project_task_sequence_number/static/description/assets/misc/pie-chart.png b/project_task_sequence_number/static/description/assets/misc/pie-chart.png new file mode 100644 index 000000000..426e05244 Binary files /dev/null and b/project_task_sequence_number/static/description/assets/misc/pie-chart.png differ diff --git a/project_task_sequence_number/static/description/assets/misc/right-arrow.png b/project_task_sequence_number/static/description/assets/misc/right-arrow.png new file mode 100644 index 000000000..730984a06 Binary files /dev/null and b/project_task_sequence_number/static/description/assets/misc/right-arrow.png differ diff --git a/project_task_sequence_number/static/description/assets/misc/star.png b/project_task_sequence_number/static/description/assets/misc/star.png new file mode 100644 index 000000000..2eb9ab29f Binary files /dev/null and b/project_task_sequence_number/static/description/assets/misc/star.png differ diff --git a/project_task_sequence_number/static/description/assets/misc/support.png b/project_task_sequence_number/static/description/assets/misc/support.png new file mode 100644 index 000000000..4f18b8b82 Binary files /dev/null and b/project_task_sequence_number/static/description/assets/misc/support.png differ diff --git a/project_task_sequence_number/static/description/assets/misc/whatsapp.png b/project_task_sequence_number/static/description/assets/misc/whatsapp.png new file mode 100644 index 000000000..d513a5356 Binary files /dev/null and b/project_task_sequence_number/static/description/assets/misc/whatsapp.png differ diff --git a/project_task_sequence_number/static/description/assets/modules/1.png b/project_task_sequence_number/static/description/assets/modules/1.png new file mode 100644 index 000000000..b21837312 Binary files /dev/null and b/project_task_sequence_number/static/description/assets/modules/1.png differ diff --git a/project_task_sequence_number/static/description/assets/modules/2.png b/project_task_sequence_number/static/description/assets/modules/2.png new file mode 100644 index 000000000..eb3f8652f Binary files /dev/null and b/project_task_sequence_number/static/description/assets/modules/2.png differ diff --git a/project_task_sequence_number/static/description/assets/modules/3.png b/project_task_sequence_number/static/description/assets/modules/3.png new file mode 100644 index 000000000..a9c4ec82c Binary files /dev/null and b/project_task_sequence_number/static/description/assets/modules/3.png differ diff --git a/project_task_sequence_number/static/description/assets/modules/4.png b/project_task_sequence_number/static/description/assets/modules/4.png new file mode 100644 index 000000000..17ba4d75f Binary files /dev/null and b/project_task_sequence_number/static/description/assets/modules/4.png differ diff --git a/project_task_sequence_number/static/description/assets/modules/5.png b/project_task_sequence_number/static/description/assets/modules/5.png new file mode 100644 index 000000000..489f44e86 Binary files /dev/null and b/project_task_sequence_number/static/description/assets/modules/5.png differ diff --git a/project_task_sequence_number/static/description/assets/modules/6.png b/project_task_sequence_number/static/description/assets/modules/6.png new file mode 100644 index 000000000..ed11bd818 Binary files /dev/null and b/project_task_sequence_number/static/description/assets/modules/6.png differ diff --git a/project_task_sequence_number/static/description/assets/screenshots/hero.gif b/project_task_sequence_number/static/description/assets/screenshots/hero.gif new file mode 100644 index 000000000..db4ad969a Binary files /dev/null and b/project_task_sequence_number/static/description/assets/screenshots/hero.gif differ diff --git a/project_task_sequence_number/static/description/assets/screenshots/task1.png b/project_task_sequence_number/static/description/assets/screenshots/task1.png new file mode 100644 index 000000000..048f2fa39 Binary files /dev/null and b/project_task_sequence_number/static/description/assets/screenshots/task1.png differ diff --git a/project_task_sequence_number/static/description/assets/screenshots/task2.png b/project_task_sequence_number/static/description/assets/screenshots/task2.png new file mode 100644 index 000000000..083a76470 Binary files /dev/null and b/project_task_sequence_number/static/description/assets/screenshots/task2.png differ diff --git a/project_task_sequence_number/static/description/assets/screenshots/task3.png b/project_task_sequence_number/static/description/assets/screenshots/task3.png new file mode 100644 index 000000000..59caf9e63 Binary files /dev/null and b/project_task_sequence_number/static/description/assets/screenshots/task3.png differ diff --git a/project_task_sequence_number/static/description/assets/screenshots/task4.png b/project_task_sequence_number/static/description/assets/screenshots/task4.png new file mode 100644 index 000000000..f57210f92 Binary files /dev/null and b/project_task_sequence_number/static/description/assets/screenshots/task4.png differ diff --git a/project_task_sequence_number/static/description/assets/screenshots/task5.png b/project_task_sequence_number/static/description/assets/screenshots/task5.png new file mode 100644 index 000000000..b6f0195b9 Binary files /dev/null and b/project_task_sequence_number/static/description/assets/screenshots/task5.png differ diff --git a/project_task_sequence_number/static/description/assets/screenshots/task6.png b/project_task_sequence_number/static/description/assets/screenshots/task6.png new file mode 100644 index 000000000..849b42339 Binary files /dev/null and b/project_task_sequence_number/static/description/assets/screenshots/task6.png differ diff --git a/project_task_sequence_number/static/description/assets/screenshots/task7.png b/project_task_sequence_number/static/description/assets/screenshots/task7.png new file mode 100644 index 000000000..c520ce5a1 Binary files /dev/null and b/project_task_sequence_number/static/description/assets/screenshots/task7.png differ diff --git a/project_task_sequence_number/static/description/assets/screenshots/task8.png b/project_task_sequence_number/static/description/assets/screenshots/task8.png new file mode 100644 index 000000000..407c35798 Binary files /dev/null and b/project_task_sequence_number/static/description/assets/screenshots/task8.png differ diff --git a/project_task_sequence_number/static/description/assets/screenshots/task9.png b/project_task_sequence_number/static/description/assets/screenshots/task9.png new file mode 100644 index 000000000..b9c7df147 Binary files /dev/null and b/project_task_sequence_number/static/description/assets/screenshots/task9.png differ diff --git a/project_task_sequence_number/static/description/banner.png b/project_task_sequence_number/static/description/banner.png new file mode 100644 index 000000000..4e8874e3f Binary files /dev/null and b/project_task_sequence_number/static/description/banner.png differ diff --git a/project_task_sequence_number/static/description/icon.png b/project_task_sequence_number/static/description/icon.png new file mode 100644 index 000000000..f9877efd8 Binary files /dev/null and b/project_task_sequence_number/static/description/icon.png differ diff --git a/project_task_sequence_number/static/description/index.html b/project_task_sequence_number/static/description/index.html new file mode 100644 index 000000000..8ad0ebcba --- /dev/null +++ b/project_task_sequence_number/static/description/index.html @@ -0,0 +1,661 @@ +
+ +
+ +
+
+ Community +
+
+ Enterprise +
+
+ Odoo.sh +
+
+
+ +
+
+
+ +

+ Project & Project Task Sequence Number

+

+ Add Unique Sequence Number to Project and Project Task

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

+ Explore This + Module

+
+ + + + +
+
+ +
+

+ Overview +

+
+
+
+ You can add prefix to project and task according to your needs. +
+
+ + + +
+
+ +
+

+ Features +

+
+
+
+
+ + Add unique sequence number for Project and Task +
+
+
+ + + +
+
+ +
+

+ Screenshots +

+
+
+
+ +
+

+ Create project without giving the prefix. Generate default + sequence number

+ +
+ +
+

+ It generate a task entry sequence for task

+ +
+ +
+

+ If we add prefix, sequence will generate based on that + prefix.

+ +
+ +
+

+ Each project generate a task entry sequence for that + project.

+ +
+ +
+

+ We can specify prefix of the task.

+ +
+ +
+

+ If we don't select the project, the default sequence number will + be generated.

+ +
+ +
+

+ If we select the project, the sequence number will generate + based on the project sequence.

+ +
+ +
+

+ We can specify the prefix in task entry sequence for the + task.

+ +
+ +
+

+ Then the sequence of that project task will generate based on + the given prefix.

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

+ 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_task_sequence_number/views/project_project_views.xml b/project_task_sequence_number/views/project_project_views.xml new file mode 100644 index 000000000..93e04ab44 --- /dev/null +++ b/project_task_sequence_number/views/project_project_views.xml @@ -0,0 +1,33 @@ + + + + + project.project.view.form.inherit.project.task.sequence.number + project.project + + + +
+

+ +

+
+
+ + + + +
+
+ + + project.project.view.form.inherit.project.task.sequence.number.simplified + project.project + + + + + + + +
\ No newline at end of file diff --git a/project_task_sequence_number/views/project_task_views.xml b/project_task_sequence_number/views/project_task_views.xml new file mode 100644 index 000000000..2d6892da4 --- /dev/null +++ b/project_task_sequence_number/views/project_task_views.xml @@ -0,0 +1,16 @@ + + + + + project.task.view.form.inherit.project.task.sequence.number + project.task + + + +
+

+
+
+
+
+
\ No newline at end of file