diff --git a/purchase_requisition_project_task/README.rst b/purchase_requisition_project_task/README.rst new file mode 100644 index 000000000..ca7da3ee9 --- /dev/null +++ b/purchase_requisition_project_task/README.rst @@ -0,0 +1,46 @@ +.. image:: https://img.shields.io/badge/license-LGPL--3-blue.svg + :target: http://www.gnu.org/licenses/lgpl-3.0-standalone.html + :alt: License: LGPL-3 + +Purchase Requisition & Project Task Integration +=============================================== +This module is help to relate the project requisition, project and task. + +Configuration +============= +- Additional configuration not required + +Company +======= +* `Cybrosys Techno Solutions `__ + +License +======= +General Public License, Version 3 (LGPL v3). +(http://www.gnu.org/licenses/lgpl-3.0-standalone.html) + +Credits +======== +* Developer: (V16) Sajna, 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/purchase_requisition_project_task/__init__.py b/purchase_requisition_project_task/__init__.py new file mode 100644 index 000000000..097bdb395 --- /dev/null +++ b/purchase_requisition_project_task/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL 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 LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +from . import models diff --git a/purchase_requisition_project_task/__manifest__.py b/purchase_requisition_project_task/__manifest__.py new file mode 100644 index 000000000..487c59992 --- /dev/null +++ b/purchase_requisition_project_task/__manifest__.py @@ -0,0 +1,49 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL 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 LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +{ + 'name': 'Purchase Requisition & Project Task Integration', + 'version': '16.0.1.0.0', + 'category': 'Project,Purchase', + 'summary': """Purchase Requisition and Project Task module relate project, + task and purchase requisition""", + 'description': "Purchase Requisition and Project task module helps to " + "select the project and task from purchase agreements. " + "And the selected project and task will show the created " + "agreement in their form view.Also this module helps to " + "group the purchase requisitions based on the selected " + "project and task.", + 'author': 'Cybrosys Techno Solutions', + 'website': "https://www.cybrosys.com", + 'company': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'depends': ['project', 'purchase_requisition'], + 'data': [ + 'views/purchase_requisition_views.xml', + 'views/project_project_views.xml', + 'views/project_task_views.xml' + ], + 'images': ['static/description/banner.jpg'], + 'license': 'LGPL-3', + 'installable': True, + 'auto_install': False, + 'application': False, +} diff --git a/purchase_requisition_project_task/doc/RELEASE_NOTES.md b/purchase_requisition_project_task/doc/RELEASE_NOTES.md new file mode 100644 index 000000000..bc72bff0b --- /dev/null +++ b/purchase_requisition_project_task/doc/RELEASE_NOTES.md @@ -0,0 +1,7 @@ +## Module + +#### 06.02.2024 +#### Version 16.0.1.0.0 +#### ADD + +- Initial Commit for Purchase Requisition & Project Task Integration. diff --git a/purchase_requisition_project_task/models/__init__.py b/purchase_requisition_project_task/models/__init__.py new file mode 100644 index 000000000..c3e9f6a42 --- /dev/null +++ b/purchase_requisition_project_task/models/__init__.py @@ -0,0 +1,24 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL 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 LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +from . import project_project +from . import project_task +from . import purchase_requisition diff --git a/purchase_requisition_project_task/models/project_project.py b/purchase_requisition_project_task/models/project_project.py new file mode 100644 index 000000000..3e2a45299 --- /dev/null +++ b/purchase_requisition_project_task/models/project_project.py @@ -0,0 +1,65 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL 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 LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +from odoo import fields, models + + +class ProjectProject(models.Model): + """Inheriting model project.project""" + _inherit = 'project.project' + + purchase_count = fields.Integer(string='Purchase', + compute='_compute_purchase_count', + helps='It shows the count of the purchase ' + 'requisitions that we made for the ' + 'task in smart tab') + + def action_purchase_requisition(self): + """ Function that helps to open the purchase agreement open view for + creating related purchase agreement. If already created it opens the + tree view of purchase agreement.""" + purchase_requisition = self.env['purchase.requisition']. \ + search([('project_id', '=', self.id)]) + if not purchase_requisition: + return { + 'type': 'ir.actions.act_window', + 'name': 'Purchase Requisition', + 'view_mode': 'form', + 'res_model': 'purchase.requisition', + 'context': { + 'default_project_id': self.id, + 'default_is_project': True + } + } + return { + 'type': 'ir.actions.act_window', + 'name': 'Purchase Requisition', + 'view_mode': 'tree,form', + 'res_model': 'purchase.requisition', + 'domain': [('project_id', '=', self.id)] + } + + def _compute_purchase_count(self): + """Function that helps to count the number of purchase agreement + related with a project""" + for record in self: + record.purchase_count = record.env['purchase.requisition']. \ + search_count([('project_id', '=', record.id)]) diff --git a/purchase_requisition_project_task/models/project_task.py b/purchase_requisition_project_task/models/project_task.py new file mode 100644 index 000000000..4b2ace8c5 --- /dev/null +++ b/purchase_requisition_project_task/models/project_task.py @@ -0,0 +1,56 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL 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 LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +from odoo import fields, models +from odoo.exceptions import ValidationError + + +class ProjectTask(models.Model): + """Inheriting model project task""" + _inherit = 'project.task' + + purchase_count = fields.Integer(string='Purchase', + compute='_compute_purchase_count', + help='It shows the count of the purchase ' + 'requisitions that we made for the ' + 'project in smart tab') + + def action_purchase_requisition(self): + """ Function that helps to open the tree view of purchase + agreement that related with the task""" + purchase_requisition = self.env['purchase.requisition']. \ + search([('task_ids', '=', self.id)]) + if not purchase_requisition: + raise ValidationError("No Purchase Requisition") + return { + 'type': 'ir.actions.act_window', + 'name': 'Purchase Requisition', + 'view_mode': 'tree,form', + 'res_model': 'purchase.requisition', + 'domain': [('task_ids', '=', self.id)] + } + + def _compute_purchase_count(self): + """Function that helps to count the number of purchase agreements that + related with the task.""" + for record in self: + record.purchase_count = self.env['purchase.requisition']. \ + search_count([('task_ids', '=', record.id)]) diff --git a/purchase_requisition_project_task/models/purchase_requisition.py b/purchase_requisition_project_task/models/purchase_requisition.py new file mode 100644 index 000000000..1a9d28c98 --- /dev/null +++ b/purchase_requisition_project_task/models/purchase_requisition.py @@ -0,0 +1,42 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL 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 LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +from odoo import api, fields, models + + +class PurchaseRequisition(models.Model): + """Inheriting model purchase requisition""" + _inherit = 'purchase.requisition' + + project_id = fields.Many2one('project.project', string='Project', + help='It helps to get the project ' + 'from project module') + task_ids = fields.Many2many('project.task', + help='this filed show all the tasks of the ' + 'selected project.') + + @api.onchange('project') + def _onchange_project_task(self): + """ Function that helps to automatically fill the related task field + when we select a project.""" + if self.project: + self.task = self.env['project.task'].\ + search([('display_project_id', '=', self.project.id)]) diff --git a/purchase_requisition_project_task/static/description/assets/icons/check.png b/purchase_requisition_project_task/static/description/assets/icons/check.png new file mode 100644 index 000000000..c8e85f51d Binary files /dev/null and b/purchase_requisition_project_task/static/description/assets/icons/check.png differ diff --git a/purchase_requisition_project_task/static/description/assets/icons/chevron.png b/purchase_requisition_project_task/static/description/assets/icons/chevron.png new file mode 100644 index 000000000..2089293d6 Binary files /dev/null and b/purchase_requisition_project_task/static/description/assets/icons/chevron.png differ diff --git a/purchase_requisition_project_task/static/description/assets/icons/cogs.png b/purchase_requisition_project_task/static/description/assets/icons/cogs.png new file mode 100644 index 000000000..95d0bad62 Binary files /dev/null and b/purchase_requisition_project_task/static/description/assets/icons/cogs.png differ diff --git a/purchase_requisition_project_task/static/description/assets/icons/consultation.png b/purchase_requisition_project_task/static/description/assets/icons/consultation.png new file mode 100644 index 000000000..8319d4baa Binary files /dev/null and b/purchase_requisition_project_task/static/description/assets/icons/consultation.png differ diff --git a/purchase_requisition_project_task/static/description/assets/icons/ecom-black.png b/purchase_requisition_project_task/static/description/assets/icons/ecom-black.png new file mode 100644 index 000000000..a9385ff13 Binary files /dev/null and b/purchase_requisition_project_task/static/description/assets/icons/ecom-black.png differ diff --git a/purchase_requisition_project_task/static/description/assets/icons/education-black.png b/purchase_requisition_project_task/static/description/assets/icons/education-black.png new file mode 100644 index 000000000..3eb09b27b Binary files /dev/null and b/purchase_requisition_project_task/static/description/assets/icons/education-black.png differ diff --git a/purchase_requisition_project_task/static/description/assets/icons/hotel-black.png b/purchase_requisition_project_task/static/description/assets/icons/hotel-black.png new file mode 100644 index 000000000..130f613be Binary files /dev/null and b/purchase_requisition_project_task/static/description/assets/icons/hotel-black.png differ diff --git a/purchase_requisition_project_task/static/description/assets/icons/license.png b/purchase_requisition_project_task/static/description/assets/icons/license.png new file mode 100644 index 000000000..a5869797e Binary files /dev/null and b/purchase_requisition_project_task/static/description/assets/icons/license.png differ diff --git a/purchase_requisition_project_task/static/description/assets/icons/lifebuoy.png b/purchase_requisition_project_task/static/description/assets/icons/lifebuoy.png new file mode 100644 index 000000000..658d56ccc Binary files /dev/null and b/purchase_requisition_project_task/static/description/assets/icons/lifebuoy.png differ diff --git a/purchase_requisition_project_task/static/description/assets/icons/manufacturing-black.png b/purchase_requisition_project_task/static/description/assets/icons/manufacturing-black.png new file mode 100644 index 000000000..697eb0e9f Binary files /dev/null and b/purchase_requisition_project_task/static/description/assets/icons/manufacturing-black.png differ diff --git a/purchase_requisition_project_task/static/description/assets/icons/pos-black.png b/purchase_requisition_project_task/static/description/assets/icons/pos-black.png new file mode 100644 index 000000000..97c0f90c1 Binary files /dev/null and b/purchase_requisition_project_task/static/description/assets/icons/pos-black.png differ diff --git a/purchase_requisition_project_task/static/description/assets/icons/puzzle.png b/purchase_requisition_project_task/static/description/assets/icons/puzzle.png new file mode 100644 index 000000000..65cf854e7 Binary files /dev/null and b/purchase_requisition_project_task/static/description/assets/icons/puzzle.png differ diff --git a/purchase_requisition_project_task/static/description/assets/icons/restaurant-black.png b/purchase_requisition_project_task/static/description/assets/icons/restaurant-black.png new file mode 100644 index 000000000..4a35eb939 Binary files /dev/null and b/purchase_requisition_project_task/static/description/assets/icons/restaurant-black.png differ diff --git a/purchase_requisition_project_task/static/description/assets/icons/service-black.png b/purchase_requisition_project_task/static/description/assets/icons/service-black.png new file mode 100644 index 000000000..301ab51cb Binary files /dev/null and b/purchase_requisition_project_task/static/description/assets/icons/service-black.png differ diff --git a/purchase_requisition_project_task/static/description/assets/icons/trading-black.png b/purchase_requisition_project_task/static/description/assets/icons/trading-black.png new file mode 100644 index 000000000..9398ba2f1 Binary files /dev/null and b/purchase_requisition_project_task/static/description/assets/icons/trading-black.png differ diff --git a/purchase_requisition_project_task/static/description/assets/icons/training.png b/purchase_requisition_project_task/static/description/assets/icons/training.png new file mode 100644 index 000000000..884ca024d Binary files /dev/null and b/purchase_requisition_project_task/static/description/assets/icons/training.png differ diff --git a/purchase_requisition_project_task/static/description/assets/icons/update.png b/purchase_requisition_project_task/static/description/assets/icons/update.png new file mode 100644 index 000000000..ecbc5a01a Binary files /dev/null and b/purchase_requisition_project_task/static/description/assets/icons/update.png differ diff --git a/purchase_requisition_project_task/static/description/assets/icons/user.png b/purchase_requisition_project_task/static/description/assets/icons/user.png new file mode 100644 index 000000000..6ffb23d9f Binary files /dev/null and b/purchase_requisition_project_task/static/description/assets/icons/user.png differ diff --git a/purchase_requisition_project_task/static/description/assets/icons/wrench.png b/purchase_requisition_project_task/static/description/assets/icons/wrench.png new file mode 100644 index 000000000..6c04dea0f Binary files /dev/null and b/purchase_requisition_project_task/static/description/assets/icons/wrench.png differ diff --git a/purchase_requisition_project_task/static/description/assets/misc/categories.png b/purchase_requisition_project_task/static/description/assets/misc/categories.png new file mode 100644 index 000000000..bedf1e0b1 Binary files /dev/null and b/purchase_requisition_project_task/static/description/assets/misc/categories.png differ diff --git a/purchase_requisition_project_task/static/description/assets/misc/check-box.png b/purchase_requisition_project_task/static/description/assets/misc/check-box.png new file mode 100644 index 000000000..42caf24b9 Binary files /dev/null and b/purchase_requisition_project_task/static/description/assets/misc/check-box.png differ diff --git a/purchase_requisition_project_task/static/description/assets/misc/compass.png b/purchase_requisition_project_task/static/description/assets/misc/compass.png new file mode 100644 index 000000000..d5fed8faa Binary files /dev/null and b/purchase_requisition_project_task/static/description/assets/misc/compass.png differ diff --git a/purchase_requisition_project_task/static/description/assets/misc/corporate.png b/purchase_requisition_project_task/static/description/assets/misc/corporate.png new file mode 100644 index 000000000..2eb13edbf Binary files /dev/null and b/purchase_requisition_project_task/static/description/assets/misc/corporate.png differ diff --git a/purchase_requisition_project_task/static/description/assets/misc/customer-support.png b/purchase_requisition_project_task/static/description/assets/misc/customer-support.png new file mode 100644 index 000000000..79efc72ed Binary files /dev/null and b/purchase_requisition_project_task/static/description/assets/misc/customer-support.png differ diff --git a/purchase_requisition_project_task/static/description/assets/misc/cybrosys-logo.png b/purchase_requisition_project_task/static/description/assets/misc/cybrosys-logo.png new file mode 100644 index 000000000..cc3cc0ccf Binary files /dev/null and b/purchase_requisition_project_task/static/description/assets/misc/cybrosys-logo.png differ diff --git a/purchase_requisition_project_task/static/description/assets/misc/features.png b/purchase_requisition_project_task/static/description/assets/misc/features.png new file mode 100644 index 000000000..b41769f77 Binary files /dev/null and b/purchase_requisition_project_task/static/description/assets/misc/features.png differ diff --git a/purchase_requisition_project_task/static/description/assets/misc/logo.png b/purchase_requisition_project_task/static/description/assets/misc/logo.png new file mode 100644 index 000000000..478462d3e Binary files /dev/null and b/purchase_requisition_project_task/static/description/assets/misc/logo.png differ diff --git a/purchase_requisition_project_task/static/description/assets/misc/pictures.png b/purchase_requisition_project_task/static/description/assets/misc/pictures.png new file mode 100644 index 000000000..56d255fe9 Binary files /dev/null and b/purchase_requisition_project_task/static/description/assets/misc/pictures.png differ diff --git a/purchase_requisition_project_task/static/description/assets/misc/pie-chart.png b/purchase_requisition_project_task/static/description/assets/misc/pie-chart.png new file mode 100644 index 000000000..426e05244 Binary files /dev/null and b/purchase_requisition_project_task/static/description/assets/misc/pie-chart.png differ diff --git a/purchase_requisition_project_task/static/description/assets/misc/right-arrow.png b/purchase_requisition_project_task/static/description/assets/misc/right-arrow.png new file mode 100644 index 000000000..730984a06 Binary files /dev/null and b/purchase_requisition_project_task/static/description/assets/misc/right-arrow.png differ diff --git a/purchase_requisition_project_task/static/description/assets/misc/star.png b/purchase_requisition_project_task/static/description/assets/misc/star.png new file mode 100644 index 000000000..2eb9ab29f Binary files /dev/null and b/purchase_requisition_project_task/static/description/assets/misc/star.png differ diff --git a/purchase_requisition_project_task/static/description/assets/misc/support.png b/purchase_requisition_project_task/static/description/assets/misc/support.png new file mode 100644 index 000000000..4f18b8b82 Binary files /dev/null and b/purchase_requisition_project_task/static/description/assets/misc/support.png differ diff --git a/purchase_requisition_project_task/static/description/assets/misc/whatsapp.png b/purchase_requisition_project_task/static/description/assets/misc/whatsapp.png new file mode 100644 index 000000000..d513a5356 Binary files /dev/null and b/purchase_requisition_project_task/static/description/assets/misc/whatsapp.png differ diff --git a/purchase_requisition_project_task/static/description/assets/modules/create_expense_from_task_odoo.png b/purchase_requisition_project_task/static/description/assets/modules/create_expense_from_task_odoo.png new file mode 100755 index 000000000..fa5c4077b Binary files /dev/null and b/purchase_requisition_project_task/static/description/assets/modules/create_expense_from_task_odoo.png differ diff --git a/purchase_requisition_project_task/static/description/assets/modules/project_dashboard_odoo.png b/purchase_requisition_project_task/static/description/assets/modules/project_dashboard_odoo.png new file mode 100755 index 000000000..6c8c8adc3 Binary files /dev/null and b/purchase_requisition_project_task/static/description/assets/modules/project_dashboard_odoo.png differ diff --git a/purchase_requisition_project_task/static/description/assets/modules/project_report_pdf.png b/purchase_requisition_project_task/static/description/assets/modules/project_report_pdf.png new file mode 100755 index 000000000..57eebc5b2 Binary files /dev/null and b/purchase_requisition_project_task/static/description/assets/modules/project_report_pdf.png differ diff --git a/purchase_requisition_project_task/static/description/assets/modules/project_task_timer.png b/purchase_requisition_project_task/static/description/assets/modules/project_task_timer.png new file mode 100755 index 000000000..5acf9a06a Binary files /dev/null and b/purchase_requisition_project_task/static/description/assets/modules/project_task_timer.png differ diff --git a/purchase_requisition_project_task/static/description/assets/modules/projects_task_checklists.png b/purchase_requisition_project_task/static/description/assets/modules/projects_task_checklists.png new file mode 100755 index 000000000..bc5648b1a Binary files /dev/null and b/purchase_requisition_project_task/static/description/assets/modules/projects_task_checklists.png differ diff --git a/purchase_requisition_project_task/static/description/assets/modules/task_deadline_reminder.png b/purchase_requisition_project_task/static/description/assets/modules/task_deadline_reminder.png new file mode 100755 index 000000000..f8aaeb32c Binary files /dev/null and b/purchase_requisition_project_task/static/description/assets/modules/task_deadline_reminder.png differ diff --git a/purchase_requisition_project_task/static/description/assets/screenshots/hero.gif b/purchase_requisition_project_task/static/description/assets/screenshots/hero.gif new file mode 100644 index 000000000..44a257412 Binary files /dev/null and b/purchase_requisition_project_task/static/description/assets/screenshots/hero.gif differ diff --git a/purchase_requisition_project_task/static/description/assets/screenshots/proj-purchase2.png b/purchase_requisition_project_task/static/description/assets/screenshots/proj-purchase2.png new file mode 100644 index 000000000..5205ea036 Binary files /dev/null and b/purchase_requisition_project_task/static/description/assets/screenshots/proj-purchase2.png differ diff --git a/purchase_requisition_project_task/static/description/assets/screenshots/proj1.png b/purchase_requisition_project_task/static/description/assets/screenshots/proj1.png new file mode 100644 index 000000000..1888db2e7 Binary files /dev/null and b/purchase_requisition_project_task/static/description/assets/screenshots/proj1.png differ diff --git a/purchase_requisition_project_task/static/description/assets/screenshots/proj2.png b/purchase_requisition_project_task/static/description/assets/screenshots/proj2.png new file mode 100644 index 000000000..648e50ee0 Binary files /dev/null and b/purchase_requisition_project_task/static/description/assets/screenshots/proj2.png differ diff --git a/purchase_requisition_project_task/static/description/assets/screenshots/proj4.png b/purchase_requisition_project_task/static/description/assets/screenshots/proj4.png new file mode 100644 index 000000000..333521543 Binary files /dev/null and b/purchase_requisition_project_task/static/description/assets/screenshots/proj4.png differ diff --git a/purchase_requisition_project_task/static/description/assets/screenshots/purch2.png b/purchase_requisition_project_task/static/description/assets/screenshots/purch2.png new file mode 100644 index 000000000..cbf0c6029 Binary files /dev/null and b/purchase_requisition_project_task/static/description/assets/screenshots/purch2.png differ diff --git a/purchase_requisition_project_task/static/description/assets/screenshots/screenshots.zip b/purchase_requisition_project_task/static/description/assets/screenshots/screenshots.zip new file mode 100644 index 000000000..1c6eae862 Binary files /dev/null and b/purchase_requisition_project_task/static/description/assets/screenshots/screenshots.zip differ diff --git a/purchase_requisition_project_task/static/description/assets/screenshots/task1.png b/purchase_requisition_project_task/static/description/assets/screenshots/task1.png new file mode 100644 index 000000000..e6dd914bb Binary files /dev/null and b/purchase_requisition_project_task/static/description/assets/screenshots/task1.png differ diff --git a/purchase_requisition_project_task/static/description/assets/screenshots/task2.png b/purchase_requisition_project_task/static/description/assets/screenshots/task2.png new file mode 100644 index 000000000..3d955a3bd Binary files /dev/null and b/purchase_requisition_project_task/static/description/assets/screenshots/task2.png differ diff --git a/purchase_requisition_project_task/static/description/banner.jpg b/purchase_requisition_project_task/static/description/banner.jpg new file mode 100644 index 000000000..0bc32c96d Binary files /dev/null and b/purchase_requisition_project_task/static/description/banner.jpg differ diff --git a/purchase_requisition_project_task/static/description/icon.png b/purchase_requisition_project_task/static/description/icon.png new file mode 100644 index 000000000..426f0813e Binary files /dev/null and b/purchase_requisition_project_task/static/description/icon.png differ diff --git a/purchase_requisition_project_task/static/description/index.html b/purchase_requisition_project_task/static/description/index.html new file mode 100644 index 000000000..8980c15d8 --- /dev/null +++ b/purchase_requisition_project_task/static/description/index.html @@ -0,0 +1,704 @@ +
+ +
+ +
+
+ Community +
+
+ Enterprise +
+
+ Odoo.sh +
+
+
+ +
+
+
+ +

+ Purchase Requisition & Project Task Integration

+

+ Integration of Purchase and Project Modules

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

+ Explore This + Module

+
+ + + + +
+
+ +
+

+ Overview +

+
+
+
In the Purchase Project Integration App, We can + select a project and its multiple tasks from purchase agreement. + Within the selected project and task, We can see the corresponding + Purchase Agreement in the Purchases tab. + Also, from the project form view, By clicking the purchase tab, We can + create a new purchase agreement for that project. +
+
+ + + +
+
+ +
+

+ Features +

+
+
+
+
+ + Selection of a project and tasks from purchase agreement + +
+
+ + Selection of multiple tasks from purchase agreement + +
+
+ + Purchase tab shows the purchase agreement in project + +
+
+ + Purchase tab shows the purchase agreement in tasks + +
+
+
+ +
+ + Creation of purchase agreement by clicking purchase tab in project + +
+ +
+
+ + + +
+
+ +
+

+ Screenshots +

+
+
+
+ +
+

+ Project and tasks selection from purchase agreement +

+

+ From Purchase agreement, user can select a project and tasks.

+ +
+ +
+

+ Purchase tab in project form +

+

+ Purchase tab in project form shows the count of purchase + agreement of a corresponding project.

+ +
+ +
+

+ Tree view of purchase agreements from project +

+

+ When clicking purchase tab, it shows the tree view of all + purchase agreement for the project. +

+ +
+ +
+

+ Create purchase agreement from project +

+

+ From the project form, by clicking the purchase tab, user can + directly create new purchase agreement. +

+ +
+ +
+

+ Purchase agreement from project +

+

+ Purchase agreement will show the project name. +

+ +
+ +
+

+ Purchase tab in tasks form +

+

+ Task form view will show all the purchase agreement that created + for the task. +

+ +
+ +
+

+ Purchase agreement tree view from task +

+

+ When clicking the purchase tab, it will show the tree view of all purchase agreement of the task. +

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

+ 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

+
+
+
+
+
+
+
+ +
+
+
+ \ No newline at end of file diff --git a/purchase_requisition_project_task/views/project_project_views.xml b/purchase_requisition_project_task/views/project_project_views.xml new file mode 100644 index 000000000..82a917651 --- /dev/null +++ b/purchase_requisition_project_task/views/project_project_views.xml @@ -0,0 +1,20 @@ + + + + + + project.project.view.form.inherit.purchase.requisition.project.task + + project.project + + + + + + + + diff --git a/purchase_requisition_project_task/views/project_task_views.xml b/purchase_requisition_project_task/views/project_task_views.xml new file mode 100644 index 000000000..378081b1e --- /dev/null +++ b/purchase_requisition_project_task/views/project_task_views.xml @@ -0,0 +1,20 @@ + + + + + + project.task.view.form.inherit.purchase.requisition.project.task + + project.task + + + + + + + + diff --git a/purchase_requisition_project_task/views/purchase_requisition_views.xml b/purchase_requisition_project_task/views/purchase_requisition_views.xml new file mode 100644 index 000000000..43c3cb568 --- /dev/null +++ b/purchase_requisition_project_task/views/purchase_requisition_views.xml @@ -0,0 +1,36 @@ + + + + + + purchase.requisition.view.form.inherit.purchase.requisition.project.task + + purchase.requisition + + + + + + + + + + + purchase.requisition.view.filter.search + purchase.requisition + + + + + + + + + + + +