diff --git a/project_website_kanban_view/README.rst b/project_website_kanban_view/README.rst new file mode 100644 index 000000000..6fbb35b78 --- /dev/null +++ b/project_website_kanban_view/README.rst @@ -0,0 +1,46 @@ +.. 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 + +Website Project Kanban View +=========================== +This module is used for viewing kanban view of Project in Website + +Configuration +============= +- Additional configuration not required + +Company +------- +* `Cybrosys Techno Solutions `__ + +License +------- +General Public License, Version 3 (AGPL v3). +(https://www.gnu.org/licenses/agpl-3.0-standalone.html) + +Credits +------- +Developer: (V17)Anfas Faisal K, Contact: odoo@cybrosys.com + +Contacts +-------- +* Mail Contact : odoo@cybrosys.com +* Website : https://cybrosys.com + +Bug Tracker +----------- +Bugs are tracked on GitHub Issues. In case of trouble, please check there if your issue has already been reported. + +Maintainer +========== +.. image:: https://cybrosys.com/images/logo.png + :target: https://cybrosys.com + +This module is maintained by Cybrosys Technologies. + +For support and more information, please visit `Our Website `__ + +Further information +=================== +HTML Description: ``__ diff --git a/project_website_kanban_view/__init__.py b/project_website_kanban_view/__init__.py new file mode 100644 index 000000000..b2cc6599c --- /dev/null +++ b/project_website_kanban_view/__init__.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies(). +# Author: Anfas Faisal K (odoo@cybrosys.info) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +################################################################################ +from . import controllers +from . import models diff --git a/project_website_kanban_view/__manifest__.py b/project_website_kanban_view/__manifest__.py new file mode 100644 index 000000000..45aade697 --- /dev/null +++ b/project_website_kanban_view/__manifest__.py @@ -0,0 +1,55 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies(). +# Author: Anfas Faisal K (odoo@cybrosys.info) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +################################################################################ +{ + 'name': 'Website Project Kanban View', + 'version': '17.0.1.0.0', + 'category': 'Website,Project', + 'summary': 'Project & Task kanban view in Website', + 'description': "Geminate comes with a feature to introduce kanban view for " + "project and their related task on website. it will show " + "the progress of each task based on their stage and due " + "date. ", + 'author': "Cybrosys Techno Solutions", + 'company': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'website': "https://www.cybrosys.com", + 'depends': ['project', 'website'], + 'data': [ + 'data/ir_config_parameter_data.xml', + 'views/kanban_view_project_templates.xml', + 'views/kanban_view_task_templates.xml', + 'views/res_config_settings_views.xml' + ], + 'assets': { + 'web.assets_frontend': [ + '/project_website_kanban_view/static/src/css/style.css', + 'https://cdn.jsdelivr.net/npm/bootstrap@4.6.2/dist/css/bootstrap.min.css', + 'https://cdn.jsdelivr.net/npm/jquery@3.6.4/dist/jquery.slim.min.js', + 'https://cdn.jsdelivr.net/npm/popper.js@1.16.1/dist/umd/popper.min.js', + ], + }, + 'images': ['static/description/banner.jpg'], + 'license': 'AGPL-3', + 'installable': True, + 'auto_install': False, + 'application': False, +} diff --git a/project_website_kanban_view/controllers/__init__.py b/project_website_kanban_view/controllers/__init__.py new file mode 100644 index 000000000..01a6162fc --- /dev/null +++ b/project_website_kanban_view/controllers/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies(). +# Author: Anfas Faisal K (odoo@cybrosys.info) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +################################################################################ +from . import project_website_kanban_view diff --git a/project_website_kanban_view/controllers/project_website_kanban_view.py b/project_website_kanban_view/controllers/project_website_kanban_view.py new file mode 100644 index 000000000..c26c18317 --- /dev/null +++ b/project_website_kanban_view/controllers/project_website_kanban_view.py @@ -0,0 +1,160 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies(). +# Author: Anfas Faisal K (odoo@cybrosys.info) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +################################################################################ +from odoo import http, _ +from odoo.exceptions import ValidationError +from odoo.http import request +from odoo.addons.portal.controllers.portal import CustomerPortal, \ + pager as portal_pager + + +class ProjectCustomerPortal(CustomerPortal): + """ + This class extends the CustomerPortal class in Odoo and provides + custom functionality for managing projects and tasks from the + customer portal. + """ + + @http.route(['/my/projects', '/my/projects/page/'], type='http', + auth="user", website=True) + def portal_my_projects( + self, page=1, date_begin=None, date_end=None, sortby=None, + viewtype='kanban', **kw): + """ + Route to display a list of projects for the logged-in user in the + customer portal. + + :param page: Current page number. + :param date_begin: Beginning of date range filter. + :param date_end: End of date range filter. + :param sortby: Sorting option. + :param viewtype: Type of view to display (e.g., kanban). + :return: + """ + res = super( + ProjectCustomerPortal, self).portal_my_projects( + page=page, date_begin=date_begin, date_end=date_end, sortby=sortby, + viewtype='kanban', + **kw) + res.qcontext.update({'viewtype': viewtype}) + return res + + @http.route(['/my/tasks', '/my/tasks/page/'], type='http', + auth="user", website=True) + def portal_my_tasks(self, page=1, date_begin=None, date_end=None, + sortby=None, filterby=None, search=None, + search_in='content', groupby=None, viewtype='kanban', + **kw): + """ + Route to display a list of tasks for the logged-in user in the + customer portal. + + :param page: Current page number. + :param date_begin: Beginning of date range filter. + :param date_end: End of date range filter. + :param sortby: Sorting option. + :param filterby: Filter option. + :param search: Search keyword. + :param search_in: Field to search in (e.g., content). + :param groupby: Grouping option. + :param viewtype: Type of view to display (e.g., kanban). + :return: HTTP response with the project details. + """ + res = super(ProjectCustomerPortal, self).portal_my_tasks( + page=page, date_begin=date_begin, date_end=date_end, + sortby=sortby, filterby=filterby, search=search, + search_in=search_in, groupby=groupby, viewtype=viewtype, **kw) + searchbar_filters = self._get_my_tasks_searchbar_filters() + domain = searchbar_filters.get(filterby, searchbar_filters.get('all'))[ + 'domain'] + values = self._prepare_tasks_values(page, date_begin, date_end, sortby, + search, search_in, groupby, + domain=domain) + pager_vals = values['pager'] + pager_vals['url_args'].update(viewtype=viewtype) + pager = portal_pager(**pager_vals) + res.qcontext.update({ + 'viewtype': viewtype, + "pager": pager + }) + return res + + @http.route(['/my/projects/', + '/my/projects//page/'], type='http', + auth="public", website=True) + def portal_my_project(self, project_id=None, access_token=None, page=1, + date_begin=None, date_end=None, sortby=None, + search=None, search_in='content', groupby=None, + task_id=None, viewtype='kanban', **kw): + """ + Route to display a specific project and its details in the customer + portal. + + :param project_id: ID of the project to display. + :param access_token: Access token for security. + :param page: Current page number. + :param date_begin: Beginning of date range filter. + :param date_end: End of date range filter. + :param sortby: Sorting option. + :param search: Search keyword. + :param search_in: Field to search in (e.g., content). + :param groupby: Grouping option. + :param task_id: ID of the task within the project. + :param viewtype: Type of view to display (e.g., kanban). + :return: HTTP response with the project details. + """ + res = super(ProjectCustomerPortal, self).portal_my_project( + project_id=project_id, access_token=access_token, page=page, + date_begin=date_begin, date_end=date_end, sortby=sortby, + search=search, search_in=search_in, groupby=groupby, + task_id=task_id, viewtype='kanban', **kw) + res.qcontext.update({'viewtype': viewtype}) + return res + + def _prepare_tasks_values(self, page, date_begin, date_end, sortby, search, + search_in, groupby, url="/my/tasks", domain=None, + su=False, project=False): + """ + Prepare the values for displaying tasks in the customer portal. + + :param page: Current page number. + :param date_begin: Beginning of date range filter. + :param date_end: End of date range filter. + :param sortby: Sorting option. + :param search: Search keyword. + :param search_in: Field to search in (e.g., content). + :param groupby: Grouping option. + :param url: URL for the tasks page. + :param domain: Filter domain for tasks. + :return: Dictionary containing values for tasks display. + """ + res = super(ProjectCustomerPortal, self)._prepare_tasks_values( + page=page, date_begin=date_begin, date_end=date_end, sortby=sortby, + search=search, search_in=search_in, groupby=groupby, url=url, + domain=domain, su=su, project=project) + task_per_page = int( + request.env['ir.config_parameter'].sudo().get_param( + "project_website_kanban_view.task_per_pager")) + self._items_per_page = task_per_page + if task_per_page == 0: + raise ValidationError(_( + "Task per page cannot be 0. Please configure a valid value.")) + return res diff --git a/project_website_kanban_view/data/ir_config_parameter_data.xml b/project_website_kanban_view/data/ir_config_parameter_data.xml new file mode 100644 index 000000000..fccf840ee --- /dev/null +++ b/project_website_kanban_view/data/ir_config_parameter_data.xml @@ -0,0 +1,10 @@ + + + + + + project_website_kanban_view.task_per_pager + 80 + + + diff --git a/project_website_kanban_view/doc/RELEASE_NOTES.md b/project_website_kanban_view/doc/RELEASE_NOTES.md new file mode 100644 index 000000000..1a4752403 --- /dev/null +++ b/project_website_kanban_view/doc/RELEASE_NOTES.md @@ -0,0 +1,7 @@ +## Module + +#### 08.04.2024 +#### Version 17.0.1.0.0 +#### ADD + +- Initial commit for Website Project Kanban View diff --git a/project_website_kanban_view/models/__init__.py b/project_website_kanban_view/models/__init__.py new file mode 100644 index 000000000..ad4410cec --- /dev/null +++ b/project_website_kanban_view/models/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies(). +# Author: Anfas Faisal K (odoo@cybrosys.info) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +################################################################################ +from . import res_config_settings diff --git a/project_website_kanban_view/models/res_config_settings.py b/project_website_kanban_view/models/res_config_settings.py new file mode 100644 index 000000000..c759064f8 --- /dev/null +++ b/project_website_kanban_view/models/res_config_settings.py @@ -0,0 +1,36 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies(). +# Author: Anfas Faisal K (odoo@cybrosys.info) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +################################################################################ +from odoo import fields, models + + +class ResConfigSettings(models.TransientModel): + """ + This class extends the 'res.config.settings' model to add a new + configuration parameter for controlling the number of tasks per page in the + kanban view. + """ + _inherit = 'res.config.settings' + + task_per_pager = fields.Integer( + string="Task per page in Kanban View", + help="Minimum number of tasks per page.", + config_parameter='project_website_kanban_view.task_per_pager') diff --git a/project_website_kanban_view/static/description/assets/icons/check.png b/project_website_kanban_view/static/description/assets/icons/check.png new file mode 100644 index 000000000..c8e85f51d Binary files /dev/null and b/project_website_kanban_view/static/description/assets/icons/check.png differ diff --git a/project_website_kanban_view/static/description/assets/icons/chevron.png b/project_website_kanban_view/static/description/assets/icons/chevron.png new file mode 100644 index 000000000..2089293d6 Binary files /dev/null and b/project_website_kanban_view/static/description/assets/icons/chevron.png differ diff --git a/project_website_kanban_view/static/description/assets/icons/cogs.png b/project_website_kanban_view/static/description/assets/icons/cogs.png new file mode 100644 index 000000000..95d0bad62 Binary files /dev/null and b/project_website_kanban_view/static/description/assets/icons/cogs.png differ diff --git a/project_website_kanban_view/static/description/assets/icons/consultation.png b/project_website_kanban_view/static/description/assets/icons/consultation.png new file mode 100644 index 000000000..8319d4baa Binary files /dev/null and b/project_website_kanban_view/static/description/assets/icons/consultation.png differ diff --git a/project_website_kanban_view/static/description/assets/icons/ecom-black.png b/project_website_kanban_view/static/description/assets/icons/ecom-black.png new file mode 100644 index 000000000..a9385ff13 Binary files /dev/null and b/project_website_kanban_view/static/description/assets/icons/ecom-black.png differ diff --git a/project_website_kanban_view/static/description/assets/icons/education-black.png b/project_website_kanban_view/static/description/assets/icons/education-black.png new file mode 100644 index 000000000..3eb09b27b Binary files /dev/null and b/project_website_kanban_view/static/description/assets/icons/education-black.png differ diff --git a/project_website_kanban_view/static/description/assets/icons/hotel-black.png b/project_website_kanban_view/static/description/assets/icons/hotel-black.png new file mode 100644 index 000000000..130f613be Binary files /dev/null and b/project_website_kanban_view/static/description/assets/icons/hotel-black.png differ diff --git a/project_website_kanban_view/static/description/assets/icons/license.png b/project_website_kanban_view/static/description/assets/icons/license.png new file mode 100644 index 000000000..a5869797e Binary files /dev/null and b/project_website_kanban_view/static/description/assets/icons/license.png differ diff --git a/project_website_kanban_view/static/description/assets/icons/lifebuoy.png b/project_website_kanban_view/static/description/assets/icons/lifebuoy.png new file mode 100644 index 000000000..658d56ccc Binary files /dev/null and b/project_website_kanban_view/static/description/assets/icons/lifebuoy.png differ diff --git a/project_website_kanban_view/static/description/assets/icons/manufacturing-black.png b/project_website_kanban_view/static/description/assets/icons/manufacturing-black.png new file mode 100644 index 000000000..697eb0e9f Binary files /dev/null and b/project_website_kanban_view/static/description/assets/icons/manufacturing-black.png differ diff --git a/project_website_kanban_view/static/description/assets/icons/pos-black.png b/project_website_kanban_view/static/description/assets/icons/pos-black.png new file mode 100644 index 000000000..97c0f90c1 Binary files /dev/null and b/project_website_kanban_view/static/description/assets/icons/pos-black.png differ diff --git a/project_website_kanban_view/static/description/assets/icons/puzzle.png b/project_website_kanban_view/static/description/assets/icons/puzzle.png new file mode 100644 index 000000000..65cf854e7 Binary files /dev/null and b/project_website_kanban_view/static/description/assets/icons/puzzle.png differ diff --git a/project_website_kanban_view/static/description/assets/icons/restaurant-black.png b/project_website_kanban_view/static/description/assets/icons/restaurant-black.png new file mode 100644 index 000000000..4a35eb939 Binary files /dev/null and b/project_website_kanban_view/static/description/assets/icons/restaurant-black.png differ diff --git a/project_website_kanban_view/static/description/assets/icons/service-black.png b/project_website_kanban_view/static/description/assets/icons/service-black.png new file mode 100644 index 000000000..301ab51cb Binary files /dev/null and b/project_website_kanban_view/static/description/assets/icons/service-black.png differ diff --git a/project_website_kanban_view/static/description/assets/icons/trading-black.png b/project_website_kanban_view/static/description/assets/icons/trading-black.png new file mode 100644 index 000000000..9398ba2f1 Binary files /dev/null and b/project_website_kanban_view/static/description/assets/icons/trading-black.png differ diff --git a/project_website_kanban_view/static/description/assets/icons/training.png b/project_website_kanban_view/static/description/assets/icons/training.png new file mode 100644 index 000000000..884ca024d Binary files /dev/null and b/project_website_kanban_view/static/description/assets/icons/training.png differ diff --git a/project_website_kanban_view/static/description/assets/icons/update.png b/project_website_kanban_view/static/description/assets/icons/update.png new file mode 100644 index 000000000..ecbc5a01a Binary files /dev/null and b/project_website_kanban_view/static/description/assets/icons/update.png differ diff --git a/project_website_kanban_view/static/description/assets/icons/user.png b/project_website_kanban_view/static/description/assets/icons/user.png new file mode 100644 index 000000000..6ffb23d9f Binary files /dev/null and b/project_website_kanban_view/static/description/assets/icons/user.png differ diff --git a/project_website_kanban_view/static/description/assets/icons/wrench.png b/project_website_kanban_view/static/description/assets/icons/wrench.png new file mode 100644 index 000000000..6c04dea0f Binary files /dev/null and b/project_website_kanban_view/static/description/assets/icons/wrench.png differ diff --git a/project_website_kanban_view/static/description/assets/misc/Cybrosys_new.png b/project_website_kanban_view/static/description/assets/misc/Cybrosys_new.png new file mode 100644 index 000000000..da4058087 Binary files /dev/null and b/project_website_kanban_view/static/description/assets/misc/Cybrosys_new.png differ diff --git a/project_website_kanban_view/static/description/assets/misc/categories.png b/project_website_kanban_view/static/description/assets/misc/categories.png new file mode 100644 index 000000000..bedf1e0b1 Binary files /dev/null and b/project_website_kanban_view/static/description/assets/misc/categories.png differ diff --git a/project_website_kanban_view/static/description/assets/misc/check-box.png b/project_website_kanban_view/static/description/assets/misc/check-box.png new file mode 100644 index 000000000..42caf24b9 Binary files /dev/null and b/project_website_kanban_view/static/description/assets/misc/check-box.png differ diff --git a/project_website_kanban_view/static/description/assets/misc/compass.png b/project_website_kanban_view/static/description/assets/misc/compass.png new file mode 100644 index 000000000..d5fed8faa Binary files /dev/null and b/project_website_kanban_view/static/description/assets/misc/compass.png differ diff --git a/project_website_kanban_view/static/description/assets/misc/corporate.png b/project_website_kanban_view/static/description/assets/misc/corporate.png new file mode 100644 index 000000000..2eb13edbf Binary files /dev/null and b/project_website_kanban_view/static/description/assets/misc/corporate.png differ diff --git a/project_website_kanban_view/static/description/assets/misc/customer-support.png b/project_website_kanban_view/static/description/assets/misc/customer-support.png new file mode 100644 index 000000000..79efc72ed Binary files /dev/null and b/project_website_kanban_view/static/description/assets/misc/customer-support.png differ diff --git a/project_website_kanban_view/static/description/assets/misc/cybrosys-logo.png b/project_website_kanban_view/static/description/assets/misc/cybrosys-logo.png new file mode 100644 index 000000000..cc3cc0ccf Binary files /dev/null and b/project_website_kanban_view/static/description/assets/misc/cybrosys-logo.png differ diff --git a/project_website_kanban_view/static/description/assets/misc/features.png b/project_website_kanban_view/static/description/assets/misc/features.png new file mode 100644 index 000000000..b41769f77 Binary files /dev/null and b/project_website_kanban_view/static/description/assets/misc/features.png differ diff --git a/project_website_kanban_view/static/description/assets/misc/logo.png b/project_website_kanban_view/static/description/assets/misc/logo.png new file mode 100644 index 000000000..478462d3e Binary files /dev/null and b/project_website_kanban_view/static/description/assets/misc/logo.png differ diff --git a/project_website_kanban_view/static/description/assets/misc/pictures.png b/project_website_kanban_view/static/description/assets/misc/pictures.png new file mode 100644 index 000000000..56d255fe9 Binary files /dev/null and b/project_website_kanban_view/static/description/assets/misc/pictures.png differ diff --git a/project_website_kanban_view/static/description/assets/misc/pie-chart.png b/project_website_kanban_view/static/description/assets/misc/pie-chart.png new file mode 100644 index 000000000..426e05244 Binary files /dev/null and b/project_website_kanban_view/static/description/assets/misc/pie-chart.png differ diff --git a/project_website_kanban_view/static/description/assets/misc/right-arrow.png b/project_website_kanban_view/static/description/assets/misc/right-arrow.png new file mode 100644 index 000000000..730984a06 Binary files /dev/null and b/project_website_kanban_view/static/description/assets/misc/right-arrow.png differ diff --git a/project_website_kanban_view/static/description/assets/misc/star (1) 2.svg b/project_website_kanban_view/static/description/assets/misc/star (1) 2.svg new file mode 100755 index 000000000..5ae9f507a --- /dev/null +++ b/project_website_kanban_view/static/description/assets/misc/star (1) 2.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/project_website_kanban_view/static/description/assets/misc/star.png b/project_website_kanban_view/static/description/assets/misc/star.png new file mode 100644 index 000000000..2eb9ab29f Binary files /dev/null and b/project_website_kanban_view/static/description/assets/misc/star.png differ diff --git a/project_website_kanban_view/static/description/assets/misc/support.png b/project_website_kanban_view/static/description/assets/misc/support.png new file mode 100644 index 000000000..4f18b8b82 Binary files /dev/null and b/project_website_kanban_view/static/description/assets/misc/support.png differ diff --git a/project_website_kanban_view/static/description/assets/misc/whatsapp.png b/project_website_kanban_view/static/description/assets/misc/whatsapp.png new file mode 100644 index 000000000..d513a5356 Binary files /dev/null and b/project_website_kanban_view/static/description/assets/misc/whatsapp.png differ diff --git a/project_website_kanban_view/static/description/assets/modules/1.jpg b/project_website_kanban_view/static/description/assets/modules/1.jpg new file mode 100644 index 000000000..f3a24c620 Binary files /dev/null and b/project_website_kanban_view/static/description/assets/modules/1.jpg differ diff --git a/project_website_kanban_view/static/description/assets/modules/2.jpg b/project_website_kanban_view/static/description/assets/modules/2.jpg new file mode 100644 index 000000000..5d694c069 Binary files /dev/null and b/project_website_kanban_view/static/description/assets/modules/2.jpg differ diff --git a/project_website_kanban_view/static/description/assets/modules/3.jpg b/project_website_kanban_view/static/description/assets/modules/3.jpg new file mode 100644 index 000000000..9407e5e83 Binary files /dev/null and b/project_website_kanban_view/static/description/assets/modules/3.jpg differ diff --git a/project_website_kanban_view/static/description/assets/modules/4.jpg b/project_website_kanban_view/static/description/assets/modules/4.jpg new file mode 100644 index 000000000..3d3da7f16 Binary files /dev/null and b/project_website_kanban_view/static/description/assets/modules/4.jpg differ diff --git a/project_website_kanban_view/static/description/assets/modules/5.jpg b/project_website_kanban_view/static/description/assets/modules/5.jpg new file mode 100644 index 000000000..0e905cf14 Binary files /dev/null and b/project_website_kanban_view/static/description/assets/modules/5.jpg differ diff --git a/project_website_kanban_view/static/description/assets/modules/6.jpg b/project_website_kanban_view/static/description/assets/modules/6.jpg new file mode 100644 index 000000000..a7a3264ef Binary files /dev/null and b/project_website_kanban_view/static/description/assets/modules/6.jpg differ diff --git a/project_website_kanban_view/static/description/assets/screenshots/1.png b/project_website_kanban_view/static/description/assets/screenshots/1.png new file mode 100644 index 000000000..3f57d18f2 Binary files /dev/null and b/project_website_kanban_view/static/description/assets/screenshots/1.png differ diff --git a/project_website_kanban_view/static/description/assets/screenshots/2.png b/project_website_kanban_view/static/description/assets/screenshots/2.png new file mode 100644 index 000000000..3fd0c7257 Binary files /dev/null and b/project_website_kanban_view/static/description/assets/screenshots/2.png differ diff --git a/project_website_kanban_view/static/description/assets/screenshots/3.png b/project_website_kanban_view/static/description/assets/screenshots/3.png new file mode 100644 index 000000000..7a30ac15e Binary files /dev/null and b/project_website_kanban_view/static/description/assets/screenshots/3.png differ diff --git a/project_website_kanban_view/static/description/assets/screenshots/4.png b/project_website_kanban_view/static/description/assets/screenshots/4.png new file mode 100644 index 000000000..4cafd93d0 Binary files /dev/null and b/project_website_kanban_view/static/description/assets/screenshots/4.png differ diff --git a/project_website_kanban_view/static/description/assets/screenshots/5.png b/project_website_kanban_view/static/description/assets/screenshots/5.png new file mode 100644 index 000000000..fbea98d9a Binary files /dev/null and b/project_website_kanban_view/static/description/assets/screenshots/5.png differ diff --git a/project_website_kanban_view/static/description/assets/screenshots/6.png b/project_website_kanban_view/static/description/assets/screenshots/6.png new file mode 100644 index 000000000..4eafb4aaf Binary files /dev/null and b/project_website_kanban_view/static/description/assets/screenshots/6.png differ diff --git a/project_website_kanban_view/static/description/assets/screenshots/7.png b/project_website_kanban_view/static/description/assets/screenshots/7.png new file mode 100644 index 000000000..0ae077039 Binary files /dev/null and b/project_website_kanban_view/static/description/assets/screenshots/7.png differ diff --git a/project_website_kanban_view/static/description/assets/screenshots/8.png b/project_website_kanban_view/static/description/assets/screenshots/8.png new file mode 100644 index 000000000..122d121ad Binary files /dev/null and b/project_website_kanban_view/static/description/assets/screenshots/8.png differ diff --git a/project_website_kanban_view/static/description/assets/screenshots/9.png b/project_website_kanban_view/static/description/assets/screenshots/9.png new file mode 100644 index 000000000..4eb85649b Binary files /dev/null and b/project_website_kanban_view/static/description/assets/screenshots/9.png differ diff --git a/project_website_kanban_view/static/description/assets/screenshots/hero-v17.gif b/project_website_kanban_view/static/description/assets/screenshots/hero-v17.gif new file mode 100644 index 000000000..85db5128e Binary files /dev/null and b/project_website_kanban_view/static/description/assets/screenshots/hero-v17.gif differ diff --git a/project_website_kanban_view/static/description/banner.jpg b/project_website_kanban_view/static/description/banner.jpg new file mode 100644 index 000000000..a04c0a303 Binary files /dev/null and b/project_website_kanban_view/static/description/banner.jpg differ diff --git a/project_website_kanban_view/static/description/icon.png b/project_website_kanban_view/static/description/icon.png new file mode 100644 index 000000000..de8ecca2f Binary files /dev/null and b/project_website_kanban_view/static/description/icon.png differ diff --git a/project_website_kanban_view/static/description/index.html b/project_website_kanban_view/static/description/index.html new file mode 100644 index 000000000..3f1a6bf8e --- /dev/null +++ b/project_website_kanban_view/static/description/index.html @@ -0,0 +1,827 @@ + + + + + + + Odoo App 3 Index + + + + + + + + +
+
+
+
+
+ +
+
+
+ Community +
+
+ Enterprise +
+
+ Odoo.sh +
+
+
+
+
+
+

+ Website Project Kanban View +

+

+ Project & Task Kanban View In Website +

+
+ +
+
+
+
+
+

+ Key Highlights +

+
+
+
+
+
+ +
+
+

+ Project Kanban view on website .

+
+
+
+
+
+
+ +
+
+

+ Enjoy real-time updates and status tracking for projects and tasks as they move through different stages .

+
+
+
+
+
+
+ +
+
+

+ Project Task Kanban view on website .

+
+
+
+
+
+
+ +
+
+

+ Keep track of task deadlines and due dates, ensuring timely completion of project tasks . +

+
+
+
+
+
+
+ +
+
+

+ Monitor progress of task based on their stage direct from website . +

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

+ Click "Projects" To See Project Kanban View. + +

+

+ Under Website > My Account .

+
+
+
+
+
+
+ +
+
+

+ Click "Tasks" To See Project Tasks Kanban View

+

+ Under Website > My Account .

+ +
+
+
+
+
+
+ +
+
+

+ Sortby Filter in Project Task

+
+
+
+
+
+
+ +
+
+

+ FilterBy Filter in Project Task. +

+
+
+
+
+
+
+ +
+
+

+ Groupby Filter in Project Task.

+
+
+
+
+
+
+ +
+
+

+ Searchby Filter in Project Task.

+
+
+
+
+
+
+ +
+
+

+ Adjust the number of tasks displayed per page. +

+
+
+
+
+
+
+ +
+
+

+ In the Task Kanban view, you can view this setting in action.

+
+
+
+
+
+
+
+
+
    +
  • + Project Kanban view on website . +
  • +
  • + Enjoy real-time updates and status tracking for projects and tasks as they move through different stages . . +
  • +
  • + Project Task Kanban view on website . +
  • +
  • + Keep track of task deadlines and due dates, ensuring timely completion of project tasks . . +
  • +
  • + Monitor progress of task based on their stage direct from website . +
  • +
+
+
+
+
+
+
Version + 17.0.1.0.0|Released on:22nd February 2024 +
+

+ Initial Commit for Website Call For Price.

+
+
+
+
+
+
+
+

+ 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_website_kanban_view/static/src/css/style.css b/project_website_kanban_view/static/src/css/style.css new file mode 100644 index 000000000..d81296c7e --- /dev/null +++ b/project_website_kanban_view/static/src/css/style.css @@ -0,0 +1,180 @@ +body { background-color: #ececec; } + +.header-menu-section{ background-color:#fff; padding: 12px 10px; } + +.left-menu a img{ width:12%; } + +.left-menu span { color:#767977; } + +.left-menu a { color:#767977; text-decoration: none; font-size: 14px; } + +.right-menu span {color:#767977; float: left; font-size: 14px; + line-height: 27px; } + +.right-menu .dropdown button { height: 26px; + padding-top: 0px; + font-size: 14px; + margin-left: 10px; background-color:#974f79; } + + .thumbnail-view-icon{ + width:24px; height: 24px; float: right; + } + + .list-view-icon{ + width:24px; height: 24px; float: right; + } + + .project-container{ + background-color: #fff; + border: 1px solid #333; + color:#45a2a1; + height: 135px; + overflow: auto; + } + + .project-container h6{ font-weight: 600; } + .project-container .tasks a{ + color:#45a2a1; + text-decoration: none; + } + + .project-container .tasks{ + font-size: 14px; + margin-top: 40px; + } + + .project-container .tasks a{ + font-weight: 600; + } + + .search-container button{ + background-color: #8c4e77; + height: 30px; + width: 38px; + display: flex; + align-items: center; + justify-content: center; + } + + .search-container button img { + width:20px; + } + + .search-container input{ height: 30px; } + + .input-group-append-btn button{ + -webkit-border-top-left-radius: 8px; + -webkit-border-bottom-left-radius: 8px; + -moz-border-radius-topleft: 8px; + -moz-border-radius-bottomleft: 8px; + border-top-left-radius: 8px; + border-bottom-left-radius: 8px; + } + + .container-section-tasks { + width: 260px; + float: left; + } + + .progress-number{ + color:#000; + float: right; + margin-top: -5px; + } + + .progres-bar{ + background-color: #dedfe8; + height: 12px; + width:202px; + float: left; + position: relative; + } + .container-section-tasks h5 { font-weight: 600; font-size: 17px; } + + .progres-bar-green { + width: 28px; + height: 12px; + background-color:#00b44e; + float: left; + } + + .progres-bar-red { + width:63px; + height: 12px; + background-color:#f60034; + float: left; + } + .progres-bar-yellow { + width:63px; + height: 12px; + background-color:#FFA500; + float: left; + } + + .task-box { + background-color: #fff; + } + + .task-box h6{ + font-size: 14px; + margin-bottom: 0px; + color: #767977; + } + + .task-box span { + font-size: 12px; + font-style: italic; + margin-right:0px !important; + } + + .clock img { width: 6%; } + .input-button { + width:10px; + height:10px; + border-radius: 50%; + background-color: #00b44e; + } + + .input-button-red { + width:10px; + height:10px; + border-radius: 50%; + background-color:red; + } + + .input-button-gray { + width:10px; + height:10px; + border-radius: 50%; + background-color:#dedfe8; + } + + .profile-pic-container{ + justify-content: space-between; + } + + .task-box{ + border: 1px solid #ccc; + word-wrap: break-word; + } + + .task-box .w-75{ padding-right: 11px;} + + .date-task-box { + font-style: normal !important; + color:#f60034 !important ; + font-weight: bold; + } + + .container-tasks { + overflow-x: scroll; + width:100%; + display:-webkit-box; + padding-bottom: 10px; + display: flex; + gap: 15px; + } + + .img-task { + margin-top: 22px; + } diff --git a/project_website_kanban_view/static/src/images/clock.png b/project_website_kanban_view/static/src/images/clock.png new file mode 100644 index 000000000..e7ce4fe28 Binary files /dev/null and b/project_website_kanban_view/static/src/images/clock.png differ diff --git a/project_website_kanban_view/static/src/images/img-list-view.png b/project_website_kanban_view/static/src/images/img-list-view.png new file mode 100644 index 000000000..20e518490 Binary files /dev/null and b/project_website_kanban_view/static/src/images/img-list-view.png differ diff --git a/project_website_kanban_view/static/src/images/img-thumbnail-view.png b/project_website_kanban_view/static/src/images/img-thumbnail-view.png new file mode 100644 index 000000000..bea994407 Binary files /dev/null and b/project_website_kanban_view/static/src/images/img-thumbnail-view.png differ diff --git a/project_website_kanban_view/views/kanban_view_project_templates.xml b/project_website_kanban_view/views/kanban_view_project_templates.xml new file mode 100644 index 000000000..1b17c154c --- /dev/null +++ b/project_website_kanban_view/views/kanban_view_project_templates.xml @@ -0,0 +1,168 @@ + + + + + + + + + diff --git a/project_website_kanban_view/views/kanban_view_task_templates.xml b/project_website_kanban_view/views/kanban_view_task_templates.xml new file mode 100644 index 000000000..0901c9868 --- /dev/null +++ b/project_website_kanban_view/views/kanban_view_task_templates.xml @@ -0,0 +1,152 @@ + + + + + + + + diff --git a/project_website_kanban_view/views/res_config_settings_views.xml b/project_website_kanban_view/views/res_config_settings_views.xml new file mode 100644 index 000000000..f4740224f --- /dev/null +++ b/project_website_kanban_view/views/res_config_settings_views.xml @@ -0,0 +1,25 @@ + + + + + res.config.settings.view.form.inherit.project.website.kanban.view + res.config.settings + + + +

Tasks

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