@ -0,0 +1,48 @@ |
|||
.. image:: https://img.shields.io/badge/license-AGPL--3-blue.svg |
|||
:target: https://www.gnu.org/licenses/agpl-3.0-standalone.html |
|||
:alt: License: AGPL-3 |
|||
|
|||
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 <https://cybrosys.com/>`__ |
|||
|
|||
License |
|||
------- |
|||
General Public License, Version 3 (AGPL v3). |
|||
(https://www.gnu.org/licenses/agpl-3.0-standalone.html) |
|||
|
|||
Credits |
|||
------- |
|||
Developers: (V17) Fathima Mazlin AM, |
|||
(V16) 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 <https://cybrosys.com/>`__ |
|||
|
|||
Further information |
|||
=================== |
|||
HTML Description: `<static/description/index.html>`__ |
@ -0,0 +1,23 @@ |
|||
# -*- coding: utf-8 -*- |
|||
################################################################################ |
|||
# |
|||
# Cybrosys Technologies Pvt. Ltd. |
|||
# |
|||
# Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>). |
|||
# Author: Fathima Mazlin AM (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 <http://www.gnu.org/licenses/>. |
|||
# |
|||
################################################################################ |
|||
from . import controllers |
|||
from . import models |
@ -0,0 +1,52 @@ |
|||
# -*- coding: utf-8 -*- |
|||
################################################################################ |
|||
# |
|||
# Cybrosys Technologies Pvt. Ltd. |
|||
# |
|||
# Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>). |
|||
# Author: Fathima Mazlin AM (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 <http://www.gnu.org/licenses/>. |
|||
# |
|||
################################################################################ |
|||
{ |
|||
'name': 'Website Project Kanban View', |
|||
'version': '15.0.1.0.0', |
|||
'category': 'Website', |
|||
'summary': 'Project & Task kanban view in Website', |
|||
'description': "This module 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_view.xml' |
|||
], |
|||
'assets': { |
|||
'web.assets_frontend': [ |
|||
'/project_website_kanban_view/static/src/css/style.css', |
|||
], |
|||
}, |
|||
'images': ['static/description/banner.png'], |
|||
'license': 'AGPL-3', |
|||
'installable': True, |
|||
'auto_install': False, |
|||
'application': False, |
|||
} |
@ -0,0 +1,22 @@ |
|||
# -*- coding: utf-8 -*- |
|||
################################################################################ |
|||
# |
|||
# Cybrosys Technologies Pvt. Ltd. |
|||
# |
|||
# Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>). |
|||
# Author: Fathima Mazlin AM (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 <http://www.gnu.org/licenses/>. |
|||
# |
|||
################################################################################ |
|||
from . import project_website_kanban_view |
@ -0,0 +1,239 @@ |
|||
# -*- coding: utf-8 -*- |
|||
################################################################################ |
|||
# |
|||
# Cybrosys Technologies Pvt. Ltd. |
|||
# |
|||
# Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>). |
|||
# Author: Fathima Mazlin AM (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 <http://www.gnu.org/licenses/>. |
|||
# |
|||
################################################################################ |
|||
from collections import OrderedDict |
|||
from odoo import http, _ |
|||
from odoo.exceptions import ValidationError |
|||
from odoo.http import request |
|||
from odoo.osv.expression import OR, AND |
|||
from odoo.tools import groupby as groupbyelem |
|||
from operator import itemgetter |
|||
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.# def _project_get_page_view_values(self, project, access_token, page=1, |
|||
# date_begin=None, date_end=None, |
|||
# sortby=None, search=None, |
|||
# search_in='content', groupby=None, |
|||
# **kwargs): |
|||
# res = super(ProjectCustomerPortal, self)._project_get_page_view_values( |
|||
# project, access_token, page=page, |
|||
# date_begin=date_begin, date_end=date_end, |
|||
# sortby=sortby, search=search, |
|||
# search_in=search_in, groupby=groupby, |
|||
# **kwargs) |
|||
# print("thuis", self._items_per_page) |
|||
# 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 |
|||
""" |
|||
|
|||
@http.route(['/my/project/<int:project_id>', |
|||
'/my/project/<int:project_id>/page/<int:page>', |
|||
'/my/project/<int:project_id>/task/<int:task_id>', |
|||
'/my/project/<int:project_id>/project_sharing'], type='http', |
|||
auth="public") |
|||
def portal_project_routes_outdated(self, **kwargs): |
|||
""" Redirect the outdated routes to the new routes. """ |
|||
return request.redirect( |
|||
request.httprequest.full_path.replace('/my/project/', |
|||
'/my/projects/')) |
|||
|
|||
@http.route(['/my/projects', '/my/projects/page/<int: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) |
|||
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 |
|||
res.qcontext.update({'viewtype': viewtype}) |
|||
return res |
|||
|
|||
@http.route(['/my/projects/<int:project_id>', |
|||
'/my/projects/<int:project_id>/page/<int: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}) |
|||
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 |
|||
return res |
|||
|
|||
@http.route(['/my/tasks', '/my/tasks/page/<int: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) |
|||
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 |
|||
searchbar_sortings = dict( |
|||
sorted(self._task_get_searchbar_sortings().items(), |
|||
key=lambda item: item[1]["sequence"])) |
|||
searchbar_filters = { |
|||
'all': {'label': _('All'), 'domain': [('project_id', '!=', False)]}, |
|||
} |
|||
projects = request.env['project.project'].search([]) |
|||
for project in projects: |
|||
searchbar_filters.update({ |
|||
str(project.id): {'label': project.name, |
|||
'domain': [('project_id', '=', project.id)]} |
|||
}) |
|||
project_groups = request.env['project.task'].read_group( |
|||
[('project_id', 'not in', projects.ids)], |
|||
['project_id'], ['project_id']) |
|||
for group in project_groups: |
|||
proj_id = group['project_id'][0] if group['project_id'] else False |
|||
proj_name = group['project_id'][1] if group['project_id'] else _( |
|||
'Others') |
|||
searchbar_filters.update({ |
|||
str(proj_id): {'label': proj_name, |
|||
'domain': [('project_id', '=', proj_id)]} |
|||
}) |
|||
if not sortby: |
|||
sortby = 'date' |
|||
order = searchbar_sortings[sortby]['order'] |
|||
if not filterby: |
|||
filterby = 'all' |
|||
domain = searchbar_filters.get(filterby, searchbar_filters.get('all'))[ |
|||
'domain'] |
|||
if not groupby: |
|||
groupby = 'project' |
|||
if date_begin and date_end: |
|||
domain += [('create_date', '>', date_begin), |
|||
('create_date', '<=', date_end)] |
|||
if search and search_in: |
|||
domain += self._task_get_search_domain(search_in, search) |
|||
TaskSudo = request.env['project.task'].sudo() |
|||
domain = AND([domain, |
|||
request.env['ir.rule']._compute_domain(TaskSudo._name, |
|||
'read')]) |
|||
task_count = TaskSudo.search_count(domain) |
|||
pager = portal_pager( |
|||
url="/my/tasks", |
|||
url_args={'date_begin': date_begin, 'date_end': date_end, |
|||
'sortby': sortby, 'filterby': filterby, |
|||
'groupby': groupby, 'search_in': search_in, |
|||
'search': search, 'viewtype': viewtype}, |
|||
total=task_count, |
|||
page=page, |
|||
step=self._items_per_page |
|||
) |
|||
order = self._task_get_order(order, groupby) |
|||
tasks = TaskSudo.search(domain, order=order, limit=self._items_per_page, |
|||
offset=pager['offset']) |
|||
request.session['my_tasks_history'] = tasks.ids[:100] |
|||
groupby_mapping = self._task_get_groupby_mapping() |
|||
group = groupby_mapping.get(groupby) |
|||
if group: |
|||
grouped_tasks = [request.env['project.task'].concat(*g) for k, g in |
|||
groupbyelem(tasks, itemgetter(group))] |
|||
else: |
|||
grouped_tasks = [tasks] if tasks else [] |
|||
task_states = dict(request.env['project.task']._fields[ |
|||
'kanban_state']._description_selection( |
|||
request.env)) |
|||
if sortby == 'status': |
|||
if groupby == 'none' and grouped_tasks: |
|||
grouped_tasks[0] = grouped_tasks[0].sorted( |
|||
lambda tasks: task_states.get(tasks.kanban_state)) |
|||
else: |
|||
grouped_tasks.sort( |
|||
key=lambda tasks: task_states.get(tasks[0].kanban_state)) |
|||
res.qcontext.update({ |
|||
'viewtype': viewtype, |
|||
"pager": pager |
|||
}) |
|||
return res |
|||
|
@ -0,0 +1,10 @@ |
|||
<?xml version="1.0" encoding="utf-8"?> |
|||
<odoo> |
|||
<!-- Adding a default value for task_per_pager in res.config.settings--> |
|||
<data noupdate="1"> |
|||
<record id="project_website_kanban_view_task_per_pager" model="ir.config_parameter"> |
|||
<field name="key">project_website_kanban_view.task_per_pager</field> |
|||
<field name="value">80</field> |
|||
</record> |
|||
</data> |
|||
</odoo> |
@ -0,0 +1,7 @@ |
|||
## Module <project_website_kanban_view> |
|||
|
|||
#### 05.06.2024 |
|||
#### Version 15.0.1.0.0 |
|||
#### ADD |
|||
|
|||
- Initial commit for Website Project Kanban View |
@ -0,0 +1,22 @@ |
|||
# -*- coding: utf-8 -*- |
|||
################################################################################ |
|||
# |
|||
# Cybrosys Technologies Pvt. Ltd. |
|||
# |
|||
# Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>). |
|||
# Author: Fathima Mazlin AM (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 <http://www.gnu.org/licenses/>. |
|||
# |
|||
################################################################################ |
|||
from . import res_config_settings |
@ -0,0 +1,36 @@ |
|||
# -*- coding: utf-8 -*- |
|||
################################################################################ |
|||
# |
|||
# Cybrosys Technologies Pvt. Ltd. |
|||
# |
|||
# Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>). |
|||
# Author: Fathima Mazlin AM (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 <http://www.gnu.org/licenses/>. |
|||
# |
|||
################################################################################ |
|||
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') |
After Width: | Height: | Size: 3.6 KiB |
After Width: | Height: | Size: 310 B |
After Width: | Height: | Size: 1.3 KiB |
After Width: | Height: | Size: 1.4 KiB |
After Width: | Height: | Size: 576 B |
After Width: | Height: | Size: 733 B |
After Width: | Height: | Size: 911 B |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 673 B |
After Width: | Height: | Size: 878 B |
After Width: | Height: | Size: 653 B |
After Width: | Height: | Size: 905 B |
After Width: | Height: | Size: 839 B |
After Width: | Height: | Size: 427 B |
After Width: | Height: | Size: 627 B |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 988 B |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 1.5 KiB |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 1.9 KiB |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 2.1 KiB |
After Width: | Height: | Size: 4.4 KiB |
After Width: | Height: | Size: 589 B |
After Width: | Height: | Size: 3.4 KiB |
After Width: | Height: | Size: 1.7 KiB |
After Width: | Height: | Size: 2.3 KiB |
After Width: | Height: | Size: 967 B |
After Width: | Height: | Size: 1.6 KiB |
After Width: | Height: | Size: 3.8 KiB |
After Width: | Height: | Size: 5.0 KiB |
After Width: | Height: | Size: 57 KiB |
After Width: | Height: | Size: 82 KiB |
After Width: | Height: | Size: 58 KiB |
After Width: | Height: | Size: 59 KiB |
After Width: | Height: | Size: 56 KiB |
After Width: | Height: | Size: 59 KiB |
After Width: | Height: | Size: 106 KiB |
After Width: | Height: | Size: 136 KiB |
After Width: | Height: | Size: 266 KiB |
After Width: | Height: | Size: 56 KiB |
After Width: | Height: | Size: 95 KiB |
After Width: | Height: | Size: 66 KiB |
After Width: | Height: | Size: 41 KiB |
After Width: | Height: | Size: 82 KiB |
After Width: | Height: | Size: 87 KiB |
After Width: | Height: | Size: 48 KiB |
After Width: | Height: | Size: 8.5 KiB |
@ -0,0 +1,689 @@ |
|||
<div style="background-color: #714B67; height: 810px; width: 100%; padding: 15px; position: relative;"> |
|||
<!-- TITLE BAR --> |
|||
<div class="d-flex align-items-center justify-content-between" |
|||
style="border-bottom: 1px solid #875A7B; padding: 15px; display: flex; justify-content: space-between; align-items: center;"> |
|||
<img src="assets/misc/cybrosys-logo.png" width="42" height="42" |
|||
style="width: 42px; height: 42px;"/> |
|||
<div> |
|||
<div |
|||
style="color: #7C7BAD; font-size: 14px; font-family: 'Montserrat', sans-serif; font-weight: bold; background-color: white; display: inline-block; padding: 3px 10px; border-radius: 50px;" |
|||
class="mr-2"> |
|||
<i class="fa fa-check mr-1"></i>Community |
|||
</div> |
|||
<div |
|||
style="color: #875A7B; font-size: 14px; font-family: 'Montserrat', sans-serif; font-weight: bold; background-color: white; display: inline-block; padding: 3px 10px; border-radius: 50px;" |
|||
class="mr-2"> |
|||
<i class="fa fa-check mr-1"></i>Enterprise |
|||
</div> |
|||
<div |
|||
style="color: #017E84; font-size: 14px; font-family: 'Montserrat', sans-serif; font-weight: bold; background-color: white; display: inline-block; padding: 3px 10px; border-radius: 50px;" |
|||
class="mr-2"> |
|||
<i class="fa fa-check mr-1"></i>Odoo.sh |
|||
</div> |
|||
</div> |
|||
</div> |
|||
<!-- END OF TITLE BAR --> |
|||
<div class="container"> |
|||
<div class="row"> |
|||
<div class="col-sm-12 col-md-12 col-lg-12"> |
|||
<!-- APP HERO --> |
|||
<h1 style="color: #FFFFFF; font-weight: bolder; font-size: 50px; text-align: center; margin-top: 50px;"> |
|||
Website Project Kanban View |
|||
</h1> |
|||
<p style="color:#FFFFFF; padding: 8px 15px; text-align: center; font-size: 24px;"> |
|||
Project & Task Kanban View In Website </p> |
|||
<!-- END OF APP HERO --> |
|||
<img src="assets/screenshots/hero.gif" |
|||
class="img-responsive" |
|||
style="width: 100%; margin-left: auto; margin-right: auto;"/> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
|
|||
<!-- NAVIGATION SECTION --> |
|||
<div class="d-flex align-items-center" |
|||
style="border-bottom: 2px solid #714B67; padding: 15px 0px; margin-top: 300px;"> |
|||
<div class="d-flex justify-content-center align-items-center mr-2" |
|||
style="background-color: #F5F5F5; border-radius: 0px; width: 40px; height: 40px;"> |
|||
<img src="assets/misc/compass.png"/> |
|||
</div> |
|||
<h2 class="mt-2" |
|||
style="font-family: 'Montserrat', sans-serif; font-size: 24px; font-weight: bold;"> |
|||
Explore This Module</h2> |
|||
</div> |
|||
<div class="row my-4" style="font-family: 'Montserrat', sans-serif;"> |
|||
<div class="col-sm-12 col-md-6 my-3"> |
|||
<a href="#overview"> |
|||
<div class="d-flex justify-content-between align-items-center" |
|||
style="background-color: #f5f5f5; padding: 30px; width: 100%;"> |
|||
<div> |
|||
<span style="color: #714B67; font-size: 24px; font-weight: 500; display: block;">Overview</span> |
|||
<span style="color: #714B67; font-size: 16px; font-weight: 400; color:#282F33; display: block;">Learn more about this module</span> |
|||
</div> |
|||
<img src="assets/misc/right-arrow.png" width="36" height="36"/> |
|||
</div> |
|||
</a> |
|||
</div> |
|||
<div class="col-sm-12 col-md-6 my-3"> |
|||
<a href="#features"> |
|||
<div class="d-flex justify-content-between align-items-center" |
|||
style="background-color: #f5f5f5; padding: 30px; width: 100%;"> |
|||
<div> |
|||
<span style="color: #714B67; font-size: 24px; font-weight: 500; display: block;">Features</span> |
|||
<span style="color: #714B67; font-size: 16px; font-weight: 400; color:#282F33; display: block;">View features of this module</span> |
|||
</div> |
|||
<img src="assets/misc/right-arrow.png" width="36" height="36"/> |
|||
</div> |
|||
</a> |
|||
</div> |
|||
<div class="col-sm-12 col-md-6 my-3"> |
|||
<a href="#screenshots"> |
|||
<div class="d-flex justify-content-between align-items-center" |
|||
style="background-color: #f5f5f5; padding: 30px; width: 100%;"> |
|||
<div> |
|||
<span style="color: #714B67; font-size: 24px; font-weight: 500; display: block;">Screenshots</span> |
|||
<span style="color: #714B67; font-size: 16px; font-weight: 400; color:#282F33; display: block;">View screenshots for this module</span> |
|||
</div> |
|||
<img src="assets/misc/right-arrow.png" width="36" height="36"/> |
|||
</div> |
|||
</a> |
|||
</div> |
|||
</div> |
|||
<!-- END OF NAVIGATION SECTION --> |
|||
|
|||
<!-- OVERVIEW SECTION --> |
|||
<div class="d-flex align-items-center" |
|||
style="border-bottom: 2px solid #714B67; padding: 15px 0px;" id="overview"> |
|||
<div class="d-flex justify-content-center align-items-center mr-2" |
|||
style="background-color: #F5F5F5; border-radius: 0px; width: 40px; height: 40px;"> |
|||
<img src="assets/misc/pie-chart.png"/> |
|||
</div> |
|||
<h2 class="mt-2" |
|||
style="font-family: 'Montserrat', sans-serif; font-size: 24px; font-weight: bold;"> |
|||
Overview |
|||
</h2> |
|||
</div> |
|||
<div class="row" |
|||
style="font-family: 'Montserrat', sans-serif; font-weight: 400; font-size: 14px; line-height: 200%;"> |
|||
<div class="col-sm-12 py-4"> |
|||
This module introduces a Kanban view feature for projects and their |
|||
associated tasks on the website. This feature displays the progress of |
|||
each task based on its stage and due date. |
|||
</div> |
|||
<!-- END OF OVERVIEW SECTION --> |
|||
|
|||
<!-- FEATURES SECTION --> |
|||
<div class="d-flex align-items-center" |
|||
style="border-bottom: 2px solid #714B67; padding: 15px 0px;" |
|||
id="features"> |
|||
<div class="d-flex justify-content-center align-items-center mr-2" |
|||
style="background-color: #F5F5F5; border-radius: 0px; width: 40px; height: 40px;"> |
|||
<img src="assets/misc/features.png"/> |
|||
</div> |
|||
<h2 class="mt-2" |
|||
style="font-family: 'Montserrat', sans-serif; font-size: 24px; font-weight: bold;"> |
|||
Features |
|||
</h2> |
|||
</div> |
|||
<div class="row" |
|||
style="font-family: 'Montserrat', sans-serif; font-weight: 400; font-size: 14px; line-height: 200%;"> |
|||
<div class="col-sm-12 col-md-6"> |
|||
<div class="d-flex align-items-center" |
|||
style="margin-top: 30px; margin-bottom: 30px"> |
|||
<img src="assets/misc/check-box.png" class="mr-2"/> |
|||
<span style="font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: bold;"> Project Kanban view on website</span> |
|||
</div> |
|||
<div class="d-flex align-items-center" |
|||
style="margin-top: 30px; margin-bottom: 30px"> |
|||
<img src="assets/misc/check-box.png" class="mr-2"/> |
|||
<span style="font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: bold;"> Project Task Kanban view on website</span> |
|||
</div> |
|||
<div class="d-flex align-items-center" |
|||
style="margin-top: 30px; margin-bottom: 30px"> |
|||
<img src="assets/misc/check-box.png" class="mr-2"/> |
|||
<span style="font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: bold;"> Monitor progress of task based on their stage direct from website</span> |
|||
</div> |
|||
</div> |
|||
<div class="col-sm-12 col-md-6"> |
|||
|
|||
<div class="d-flex align-items-center" |
|||
style="margin-top: 30px; margin-bottom: 30px"> |
|||
<img src="assets/misc/check-box.png" class="mr-2"/> |
|||
<span style="font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: bold;">Enjoy real-time updates and status tracking for projects and tasks as they move through different stages . |
|||
</span> |
|||
</div> |
|||
<div class="d-flex align-items-center" |
|||
style="margin-top: 30px; margin-bottom: 30px"> |
|||
<img src="assets/misc/check-box.png" class="mr-2"/> |
|||
<span style="font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: bold;"> Keep track of task deadlines and due dates, ensuring timely completion of project tasks.</span> |
|||
</div> |
|||
</div> |
|||
<!-- END OF FEATURES SECTION --> |
|||
|
|||
<!-- SCREENSHOTS SECTION --> |
|||
<div class="d-flex align-items-center" |
|||
style="border-bottom: 2px solid #714B67; padding: 15px 0px;" |
|||
id="screenshots"> |
|||
<div class="d-flex justify-content-center align-items-center mr-2" |
|||
style="background-color: #F5F5F5; border-radius: 0px; width: 40px; height: 40px;"> |
|||
<img src="assets/misc/pictures.png"/> |
|||
</div> |
|||
<h2 class="mt-2" |
|||
style="font-family: 'Montserrat', sans-serif; font-size: 24px; font-weight: bold;"> |
|||
Screenshots |
|||
</h2> |
|||
</div> |
|||
<div class="row"> |
|||
<div class="col-sm-12"> |
|||
<div style="display: block; margin: 30px auto;"> |
|||
<h3 style="font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: bold;"> |
|||
Click "Projects" To See Project Kanban View.</h3> |
|||
<p style="font-weight: 400; font-family: 'Montserrat', sans-serif; font-size: 14px;"> |
|||
Under Website > My Account.</p> |
|||
<img src="assets/screenshots/project_kanban.png" |
|||
class="img-thumbnail"> |
|||
</div> |
|||
|
|||
<div style="display: block; margin: 30px auto;"> |
|||
<h3 style="font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: bold;"> |
|||
Click "Tasks" To See Project Tasks Kanban View |
|||
</h3> |
|||
<p style="font-weight: 400; font-family: 'Montserrat', sans-serif; font-size: 14px;"> |
|||
Under Website > My Account.</p> |
|||
<img src="assets/screenshots/project_task_kanban.png" |
|||
class="img-thumbnail"> |
|||
</div> |
|||
|
|||
<div style="display: block; margin: 30px auto;"> |
|||
<h3 style="font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: bold;"> |
|||
Sortby Filter in Project Task. |
|||
|
|||
</h3> |
|||
<img src="assets/screenshots/sortby1.png" |
|||
class="img-thumbnail"> |
|||
</div> |
|||
|
|||
<div style="display: block; margin: 30px auto;"> |
|||
<h3 style="font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: bold;"> |
|||
FilterBy Filter in Project Task. |
|||
|
|||
</h3> |
|||
<img src="assets/screenshots/filterby.png" |
|||
class="img-thumbnail"> |
|||
</div> |
|||
|
|||
<div style="display: block; margin: 30px auto;"> |
|||
<h3 style="font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: bold;"> |
|||
Groupby Filter in Project Task. |
|||
|
|||
</h3> |
|||
<img src="assets/screenshots/groupby.png" |
|||
class="img-thumbnail"> |
|||
</div> |
|||
<div style="display: block; margin: 30px auto;"> |
|||
<h3 style="font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: bold;"> |
|||
Searchby Filter in Project Task. |
|||
|
|||
</h3> |
|||
<img src="assets/screenshots/search.png" |
|||
class="img-thumbnail"> |
|||
</div> |
|||
<div style="display: block; margin: 30px auto;"> |
|||
<h3 style="font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: bold;"> |
|||
Adjust the number of tasks displayed per page. |
|||
</h3> |
|||
<img src="assets/screenshots/task_page.png" |
|||
class="img-thumbnail"> |
|||
</div> |
|||
<div style="display: block; margin: 30px auto;"> |
|||
<h3 style="font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: bold;"> |
|||
In the Task Kanban view, you can view this setting in |
|||
action. |
|||
</h3> |
|||
<img src="assets/screenshots/pagination.png" |
|||
class="img-thumbnail"> |
|||
</div> |
|||
|
|||
|
|||
</div> |
|||
</div> |
|||
<!-- END OF SCREENSHOTS SECTION --> |
|||
|
|||
<!-- RELATED PRODUCTS --> |
|||
<div class="d-flex align-items-center" |
|||
style="border-bottom: 2px solid #714B67; padding: 15px 0px;"> |
|||
<div class="d-flex justify-content-center align-items-center mr-2" |
|||
style="background-color: #F5F5F5; border-radius: 0px; width: 40px; height: 40px;"> |
|||
<img src="assets/misc/categories.png"/> |
|||
</div> |
|||
<h2 class="mt-2" |
|||
style="font-family: 'Montserrat', sans-serif; font-size: 24px; font-weight: bold;"> |
|||
Related |
|||
Products |
|||
</h2> |
|||
</div> |
|||
<div class="row"> |
|||
<div class="col-sm-12"> |
|||
<div id="demo1" class="row carousel slide" data-ride="carousel"> |
|||
<!-- The slideshow --> |
|||
<div class="carousel-inner" style="padding: 30px;"> |
|||
<div class="carousel-item" style="min-height: 198.656px;"> |
|||
<div class="col-xs-12 col-sm-4 col-md-4 mb16 mt16" |
|||
style="float:left"> |
|||
<a href="https://apps.odoo.com/apps/modules/15.0/product_brand_ecommerce/" |
|||
target="_blank"> |
|||
<div style="border-radius:10px"> |
|||
<img class="img img-responsive center-block" |
|||
style="border-radius: 0px;" |
|||
src="assets/modules/product_brand_ecommerce.png"> |
|||
</div> |
|||
</a> |
|||
</div> |
|||
<div class="col-xs-12 col-sm-4 col-md-4 mb16 mt16" |
|||
style="float:left"> |
|||
<a href="https://apps.odoo.com/apps/modules/15.0/website_repeat_sale/" |
|||
target="_blank"> |
|||
<div style="border-radius:10px"> |
|||
<img class="img img-responsive center-block" |
|||
style="border-radius: 0px;" |
|||
src="assets/modules/website_repeat_sale.png"> |
|||
</div> |
|||
</a> |
|||
</div> |
|||
<div class="col-xs-12 col-sm-4 col-md-4 mb16 mt16" |
|||
style="float:left"> |
|||
<a href="https://apps.odoo.com/apps/modules/15.0/openai_website_product_media/" |
|||
target="_blank"> |
|||
<div style="border-radius:10px"> |
|||
<img class="img img-responsive center-block" |
|||
style="border-radius: 0px;" |
|||
src="assets/modules/openai_website_product_media.png"> |
|||
</div> |
|||
</a> |
|||
</div> |
|||
</div> |
|||
<div class="carousel-item active" |
|||
style="min-height: 198.656px;"> |
|||
<div class="col-xs-12 col-sm-4 col-md-4 mb16 mt16" |
|||
style="float:left"> |
|||
<a href="https://apps.odoo.com/apps/modules/15.0/delivery_date_ecommerce/" |
|||
target="_blank"> |
|||
<div style="border-radius:10px"> |
|||
<img class="img img-responsive center-block" |
|||
style="border-radius: 0px;" |
|||
src="assets/modules/delivery_date_ecommerce.png"> |
|||
</div> |
|||
</a> |
|||
</div> |
|||
<div class="col-xs-12 col-sm-4 col-md-4 mb16 mt16" |
|||
style="float:left"> |
|||
<a href="https://apps.odoo.com/apps/modules/15.0/wishlist_product_website_backend/" |
|||
target="_blank"> |
|||
<div style="border-radius:10px"> |
|||
<img class="img img-responsive center-block" |
|||
style="border-radius: 0px;" |
|||
src="assets/modules/wishlist_product_website_backend.png"> |
|||
</div> |
|||
</a> |
|||
</div> |
|||
<div class="col-xs-12 col-sm-4 col-md-4 mb16 mt16" |
|||
style="float:left"> |
|||
<a href="https://apps.odoo.com/apps/modules/15.0/website_multi_variant/" |
|||
target="_blank"> |
|||
<div style="border-radius:10px"> |
|||
<img class="img img-responsive center-block" |
|||
style="border-radius: 0px;" |
|||
src="assets/modules/website_multi_variant.png"> |
|||
</div> |
|||
</a> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
<!-- Left and right controls --> |
|||
<a class="carousel-control-prev" href="#demo1" data-slide="prev" |
|||
style="width:35px; color:#000"> <span |
|||
class="carousel-control-prev-icon"><i |
|||
class="fa fa-chevron-left" |
|||
style="font-size:24px"></i></span> |
|||
</a> <a class="carousel-control-next" href="#demo1" |
|||
data-slide="next" style="width:35px; color:#000"> |
|||
<span class="carousel-control-next-icon"><i |
|||
class="fa fa-chevron-right" |
|||
style="font-size:24px"></i></span> |
|||
</a> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
<!-- END OF RELATED PRODUCTS --> |
|||
|
|||
<!-- OUR SERVICES --> |
|||
<div class="d-flex align-items-center" |
|||
style="border-bottom: 2px solid #714B67; padding: 15px 0px;"> |
|||
<div class="d-flex justify-content-center align-items-center mr-2" |
|||
style="background-color: #F5F5F5; border-radius: 0px; width: 40px; height: 40px;"> |
|||
<img src="assets/misc/star.png"/> |
|||
</div> |
|||
<h2 class="mt-2" |
|||
style="font-family: 'Montserrat', sans-serif; font-size: 24px; font-weight: bold;"> |
|||
Our Services |
|||
</h2> |
|||
</div> |
|||
|
|||
<div class="container my-5"> |
|||
<div class="row"> |
|||
<div class="col-lg-4 d-flex flex-column justify-content-center align-items-center my-4"> |
|||
<div class="d-flex justify-content-center align-items-center mx-3 my-3" |
|||
style="background-color: #1dd1a1 !important; border-radius: 15px !important; height: 80px; width: 80px;"> |
|||
<img src="assets/icons/cogs.png" class="img-responsive" |
|||
height="48px" width="48px"> |
|||
</div> |
|||
<h6 class="text-center" |
|||
style="font-family: Montserrat, 'sans-serif' !important; font-weight: bold;"> |
|||
Odoo |
|||
Customization</h6> |
|||
</div> |
|||
|
|||
<div class="col-lg-4 d-flex flex-column justify-content-center align-items-center my-4"> |
|||
<div class="d-flex justify-content-center align-items-center mx-3 my-3" |
|||
style="background-color: #ff6b6b !important; border-radius: 15px !important; height: 80px; width: 80px;"> |
|||
<img src="assets/icons/wrench.png" |
|||
class="img-responsive" height="48px" width="48px"> |
|||
</div> |
|||
<h6 class="text-center" |
|||
style="font-family: Montserrat, 'sans-serif' !important; font-weight: bold;"> |
|||
Odoo |
|||
Implementation</h6> |
|||
</div> |
|||
|
|||
<div class="col-lg-4 d-flex flex-column justify-content-center align-items-center my-4"> |
|||
<div class="d-flex justify-content-center align-items-center mx-3 my-3" |
|||
style="background-color: #6462CD !important; border-radius: 15px !important; height: 80px; width: 80px;"> |
|||
<img src="assets/icons/lifebuoy.png" |
|||
class="img-responsive" height="48px" width="48px"> |
|||
</div> |
|||
<h6 class="text-center" |
|||
style="font-family: Montserrat, 'sans-serif' !important; font-weight: bold;"> |
|||
Odoo |
|||
Support</h6> |
|||
</div> |
|||
|
|||
<div class="col-lg-4 d-flex flex-column justify-content-center align-items-center my-4"> |
|||
<div class="d-flex justify-content-center align-items-center mx-3 my-3" |
|||
style="background-color: #ffa801 !important; border-radius: 15px !important; height: 80px; width: 80px;"> |
|||
<img src="assets/icons/user.png" class="img-responsive" |
|||
height="48px" width="48px"> |
|||
</div> |
|||
<h6 class="text-center" |
|||
style="font-family: Montserrat, 'sans-serif' !important; font-weight: bold;"> |
|||
Hire |
|||
Odoo |
|||
Developer</h6> |
|||
</div> |
|||
|
|||
<div class="col-lg-4 d-flex flex-column justify-content-center align-items-center my-4"> |
|||
<div class="d-flex justify-content-center align-items-center mx-3 my-3" |
|||
style="background-color: #54a0ff !important; border-radius: 15px !important; height: 80px; width: 80px;"> |
|||
<img src="assets/icons/puzzle.png" |
|||
class="img-responsive" height="48px" width="48px"> |
|||
</div> |
|||
<h6 class="text-center" |
|||
style="font-family: Montserrat, 'sans-serif' !important; font-weight: bold;"> |
|||
Odoo |
|||
Integration</h6> |
|||
</div> |
|||
|
|||
<div class="col-lg-4 d-flex flex-column justify-content-center align-items-center my-4"> |
|||
<div class="d-flex justify-content-center align-items-center mx-3 my-3" |
|||
style="background-color: #6d7680 !important; border-radius: 15px !important; height: 80px; width: 80px;"> |
|||
<img src="assets/icons/update.png" |
|||
class="img-responsive" height="48px" width="48px"> |
|||
</div> |
|||
<h6 class="text-center" |
|||
style="font-family: Montserrat, 'sans-serif' !important; font-weight: bold;"> |
|||
Odoo |
|||
Migration</h6> |
|||
</div> |
|||
|
|||
<div class="col-lg-4 d-flex flex-column justify-content-center align-items-center my-4"> |
|||
<div class="d-flex justify-content-center align-items-center mx-3 my-3" |
|||
style="background-color: #786fa6 !important; border-radius: 15px !important; height: 80px; width: 80px;"> |
|||
<img src="assets/icons/consultation.png" |
|||
class="img-responsive" height="48px" width="48px"> |
|||
</div> |
|||
<h6 class="text-center" |
|||
style="font-family: Montserrat, 'sans-serif' !important; font-weight: bold;"> |
|||
Odoo |
|||
Consultancy</h6> |
|||
</div> |
|||
|
|||
<div class="col-lg-4 d-flex flex-column justify-content-center align-items-center my-4"> |
|||
<div class="d-flex justify-content-center align-items-center mx-3 my-3" |
|||
style="background-color: #f8a5c2 !important; border-radius: 15px !important; height: 80px; width: 80px;"> |
|||
<img src="assets/icons/training.png" |
|||
class="img-responsive" height="48px" width="48px"> |
|||
</div> |
|||
<h6 class="text-center" |
|||
style="font-family: Montserrat, 'sans-serif' !important; font-weight: bold;"> |
|||
Odoo |
|||
Implementation</h6> |
|||
</div> |
|||
|
|||
<div class="col-lg-4 d-flex flex-column justify-content-center align-items-center my-4"> |
|||
<div class="d-flex justify-content-center align-items-center mx-3 my-3" |
|||
style="background-color: #e6be26 !important; border-radius: 15px !important; height: 80px; width: 80px;"> |
|||
<img src="assets/icons/license.png" |
|||
class="img-responsive" height="48px" width="48px"> |
|||
</div> |
|||
<h6 class="text-center" |
|||
style="font-family: Montserrat, 'sans-serif' !important; font-weight: bold;"> |
|||
Odoo |
|||
Licensing Consultancy</h6> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
<!-- END OF OUR SERVICES --> |
|||
|
|||
<!-- OUR INDUSTRIES --> |
|||
<div class="d-flex align-items-center" |
|||
style="border-bottom: 2px solid #714B67; padding: 15px 0px;"> |
|||
<div class="d-flex justify-content-center align-items-center mr-2" |
|||
style="background-color: #F5F5F5; border-radius: 0px; width: 40px; height: 40px;"> |
|||
<img src="assets/misc/corporate.png"/> |
|||
</div> |
|||
<h2 class="mt-2" |
|||
style="font-family: 'Montserrat', sans-serif; font-size: 24px; font-weight: bold;"> |
|||
Our |
|||
Industries |
|||
</h2> |
|||
</div> |
|||
|
|||
<div class="container my-5"> |
|||
<div class="row"> |
|||
<div class="col-lg-3"> |
|||
<div class="my-4 d-flex flex-column justify-content-center" |
|||
style="background-color: #f6f8f9 !important; border-radius: 0px; padding: 2rem !important; height: 250px !important;"> |
|||
<img src="assets/icons/trading-black.png" |
|||
class="img-responsive mb-3" height="48px" |
|||
width="48px"> |
|||
<h5 style="font-family: Montserrat, sans-serif !important; color: #000 !important; font-weight: bold;"> |
|||
Trading |
|||
</h5> |
|||
<p style="font-family: Montserrat, sans-serif !important; font-size: 0.9rem !important;"> |
|||
Easily procure |
|||
and |
|||
sell your products</p> |
|||
</div> |
|||
</div> |
|||
|
|||
<div class="col-lg-3"> |
|||
<div class="my-4 d-flex flex-column justify-content-center" |
|||
style="background-color: #f6f8f9 !important; border-radius: 0px; padding: 2rem !important; height: 250px !important;"> |
|||
<img src="assets/icons/pos-black.png" |
|||
class="img-responsive mb-3" height="48px" |
|||
width="48px"> |
|||
<h5 style="font-family: Montserrat, sans-serif !important; color: #000 !important; font-weight: bold;"> |
|||
POS |
|||
</h5> |
|||
<p style="font-family: Montserrat, sans-serif !important; font-size: 0.9rem !important;"> |
|||
Easy |
|||
configuration |
|||
and convivial experience</p> |
|||
</div> |
|||
</div> |
|||
|
|||
<div class="col-lg-3"> |
|||
<div class="my-4 d-flex flex-column justify-content-center" |
|||
style="background-color: #f6f8f9 !important; border-radius: 0px; padding: 2rem !important; height: 250px !important;"> |
|||
<img src="assets/icons/education-black.png" |
|||
class="img-responsive mb-3" height="48px" |
|||
width="48px"> |
|||
<h5 style="font-family: Montserrat, sans-serif !important; color: #000 !important; font-weight: bold;"> |
|||
Education |
|||
</h5> |
|||
<p style="font-family: Montserrat, sans-serif !important; font-size: 0.9rem !important;"> |
|||
A platform for |
|||
educational management</p> |
|||
</div> |
|||
</div> |
|||
|
|||
<div class="col-lg-3"> |
|||
<div class="my-4 d-flex flex-column justify-content-center" |
|||
style="background-color: #f6f8f9 !important; border-radius: 0px; padding: 2rem !important; height: 250px !important;"> |
|||
<img src="assets/icons/manufacturing-black.png" |
|||
class="img-responsive mb-3" height="48px" |
|||
width="48px"> |
|||
<h5 style="font-family: Montserrat, sans-serif !important; color: #000 !important; font-weight: bold;"> |
|||
Manufacturing |
|||
</h5> |
|||
<p style="font-family: Montserrat, sans-serif !important; font-size: 0.9rem !important;"> |
|||
Plan, track and |
|||
schedule your operations</p> |
|||
</div> |
|||
</div> |
|||
|
|||
<div class="col-lg-3"> |
|||
<div class="my-4 d-flex flex-column justify-content-center" |
|||
style="background-color: #f6f8f9 !important; border-radius: 0px; padding: 2rem !important; height: 250px !important;"> |
|||
<img src="assets/icons/ecom-black.png" |
|||
class="img-responsive mb-3" height="48px" |
|||
width="48px"> |
|||
<h5 style="font-family: Montserrat, sans-serif !important; color: #000 !important; font-weight: bold;"> |
|||
E-commerce & Website |
|||
</h5> |
|||
<p style="font-family: Montserrat, sans-serif !important; font-size: 0.9rem !important;"> |
|||
Mobile |
|||
friendly, |
|||
awe-inspiring product pages</p> |
|||
</div> |
|||
</div> |
|||
|
|||
<div class="col-lg-3"> |
|||
<div class="my-4 d-flex flex-column justify-content-center" |
|||
style="background-color: #f6f8f9 !important; border-radius: 0px; padding: 2rem !important; height: 250px !important;"> |
|||
<img src="assets/icons/service-black.png" |
|||
class="img-responsive mb-3" height="48px" |
|||
width="48px"> |
|||
<h5 style="font-family: Montserrat, sans-serif !important; color: #000 !important; font-weight: bold;"> |
|||
Service Management |
|||
</h5> |
|||
<p style="font-family: Montserrat, sans-serif !important; font-size: 0.9rem !important;"> |
|||
Keep track of |
|||
services and invoice</p> |
|||
</div> |
|||
</div> |
|||
|
|||
<div class="col-lg-3"> |
|||
<div class="my-4 d-flex flex-column justify-content-center" |
|||
style="background-color: #f6f8f9 !important; border-radius: 0px; padding: 2rem !important; height: 250px !important;"> |
|||
<img src="assets/icons/restaurant-black.png" |
|||
class="img-responsive mb-3" height="48px" |
|||
width="48px"> |
|||
<h5 style="font-family: Montserrat, sans-serif !important; color: #000 !important; font-weight: bold;"> |
|||
Restaurant |
|||
</h5> |
|||
<p style="font-family: Montserrat, sans-serif !important; font-size: 0.9rem !important;"> |
|||
Run your bar or |
|||
restaurant methodically</p> |
|||
</div> |
|||
</div> |
|||
|
|||
<div class="col-lg-3"> |
|||
<div class="my-4 d-flex flex-column justify-content-center" |
|||
style="background-color: #f6f8f9 !important; border-radius: 0px; padding: 2rem !important; height: 250px !important;"> |
|||
<img src="assets/icons/hotel-black.png" |
|||
class="img-responsive mb-3" height="48px" |
|||
width="48px"> |
|||
<h5 style="font-family: Montserrat, sans-serif !important; color: #000 !important; font-weight: bold;"> |
|||
Hotel Management |
|||
</h5> |
|||
<p style="font-family: Montserrat, sans-serif !important; font-size: 0.9rem !important;"> |
|||
An |
|||
all-inclusive |
|||
hotel management application</p> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
<!-- SUPPORT --> |
|||
<div class="d-flex align-items-center" |
|||
style="border-bottom: 2px solid #714B67; padding: 15px 0px;"> |
|||
<div class="d-flex justify-content-center align-items-center mr-2" |
|||
style="background-color: #F5F5F5; border-radius: 0px; width: 40px; height: 40px;"> |
|||
<img src="assets/misc/customer-support.png"/> |
|||
</div> |
|||
<h2 class="mt-2" |
|||
style="font-family: 'Montserrat', sans-serif; font-size: 24px; font-weight: bold;"> |
|||
Support |
|||
</h2> |
|||
</div> |
|||
<div class="container mt-5"> |
|||
<div class="row"> |
|||
<div class="col-sm-12 col-md-6"> |
|||
<div style="background-color: #F6F8F9; padding: 30px; display: flex; align-items: center;"> |
|||
<div class="mr-4 d-flex justify-content-center align-items-center" |
|||
style="background-color: #714B67; display: inline-block; height: 70px; width: 70px; display: flex; align-items: center; justify-content: center;"> |
|||
<img src="assets/misc/support.png" height="48" |
|||
width="48" style="width: 42px; height: 42px;"/> |
|||
</div> |
|||
<div> |
|||
<h4>Need Help?</h4> |
|||
<p style="line-height: 100%;">Got questions or need |
|||
help? Get in touch.</p> |
|||
<a href="mailto:odoo@cybrosys.com"> |
|||
<p style="font-weight: 400; font-size: 28px; line-height: 80%; color: #714B67;"> |
|||
odoo@cybrosys.com</p> |
|||
</a> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
<div class="col-sm-12 col-md-6"> |
|||
<div style="background-color: #F6F8F9; padding: 30px; display: flex; align-items: center;"> |
|||
<div class="mr-4 d-flex justify-content-center align-items-center" |
|||
style="background-color: #2AC44D; display: inline-block; height: 70px; width: 70px; display: flex; align-items: center; justify-content: center;"> |
|||
<img src="assets/misc/whatsapp.png" height="52" |
|||
width="52" style="width: 52px; height: 52px;"/> |
|||
</div> |
|||
<div> |
|||
<h4>WhatsApp</h4> |
|||
<p style="line-height: 100%;">Say hi to us on |
|||
WhatsApp!</p> |
|||
<a href="https://api.whatsapp.com/send?phone=918606827707"> |
|||
<p style="font-weight: 400; font-size: 28px; line-height: 80%; color: #714B67;"> |
|||
+91 86068 |
|||
27707</p> |
|||
</a> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
<div class="row"> |
|||
<div class="col-sm-12 my-5 d-flex justify-content-center align-items-center"> |
|||
<img src="assets/misc/logo.png" width="144" height="31" |
|||
style="width:144px; height: 31px; margin-top: 40px;"/> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
<!-- END OF SUPPORT --> |
|||
</div> |
|||
</div> |
@ -0,0 +1,173 @@ |
|||
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; |
|||
} |
|||
|
|||
.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; |
|||
} |
|||
|
|||
.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; |
|||
} |
After Width: | Height: | Size: 1.5 KiB |
After Width: | Height: | Size: 172 KiB |
After Width: | Height: | Size: 334 KiB |
@ -0,0 +1,74 @@ |
|||
<?xml version="1.0" encoding="UTF-8" ?> |
|||
<odoo> |
|||
<!--Project Kanban View Template--> |
|||
<template id="project_kanban_view_template" name="Kanban View"> |
|||
<t t-if="viewtype =='kanban'"> |
|||
<t t-if="page_name == 'project'"> |
|||
<section |
|||
class="section-Kanban-view w-100 float-left kanban-container"> |
|||
<div class="container"> |
|||
<div class="row"> |
|||
<div class="col-lg-12"> |
|||
<div class="container-projects pl-5 pr-5 float-left w-100"> |
|||
<div class="row"> |
|||
<t t-foreach="projects" |
|||
t-as="project"> |
|||
<div class="col-lg-3 mb-4"> |
|||
<div class="project-container w-100 float-left p-3"> |
|||
<h6> |
|||
<a t-attf-href="/my/projects/#{project.id}?{{ keep_query() }}"> |
|||
<t t-esc="project.name"/> |
|||
</a> |
|||
</h6> |
|||
<div class="tasks"> |
|||
<a t-attf-href="/my/projects/#{project.id}?{{ keep_query() }}"> |
|||
<t t-out="project.task_count_with_subtasks"/> |
|||
Tasks |
|||
</a> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</t> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</section> |
|||
</t> |
|||
</t> |
|||
</template> |
|||
<!--Inheriting the Searchbar to add kanban and task icon--> |
|||
<template id="kanban_view_template_inherit" |
|||
inherit_id="portal.portal_searchbar"> |
|||
<xpath expr="//nav" position="before"> |
|||
<t t-if="page_name == 'project' or page_name == 'task'"> |
|||
<div class="container-view float-left w-100"> |
|||
<div class="mt-3 mb-3 list-view-icon"> |
|||
<a t-att-href="default_url + '?' + keep_query('*', viewtype='list')"> |
|||
<img class="w-100" |
|||
src="/project_website_kanban_view/static/src/images/img-list-view.png"/> |
|||
</a> |
|||
</div> |
|||
<div class="mt-3 mb-3 thumbnail-view-icon mr-2"> |
|||
<a t-att-href="default_url + '?' + keep_query('*', viewtype='kanban')"> |
|||
<img class="w-100" |
|||
src="/project_website_kanban_view/static/src/images/img-thumbnail-view.png"/> |
|||
</a> |
|||
</div> |
|||
</div> |
|||
</t> |
|||
</xpath> |
|||
</template> |
|||
<!-- Adding an attribute viewtype to the list view table and also add the Project kanban view Template--> |
|||
<template id="list_view_template_inherit" inherit_id="portal.portal_table"> |
|||
<xpath expr="//table[hasclass('o_portal_my_doc_table')]" |
|||
position="attributes"> |
|||
<attribute name="t-if">viewtype != 'kanban'</attribute> |
|||
</xpath> |
|||
<xpath expr="//table[hasclass('o_portal_my_doc_table')]" |
|||
position="before"> |
|||
<t t-call="project_website_kanban_view.project_kanban_view_template"/> |
|||
</xpath> |
|||
</template> |
|||
</odoo> |
@ -0,0 +1,147 @@ |
|||
<?xml version="1.0" encoding="UTF-8" ?> |
|||
<odoo> |
|||
<!-- Project Task Kanban View Template --> |
|||
<template id="project_task_kanban_view_template" name="Kanban View"> |
|||
<t t-if="viewtype =='kanban'"> |
|||
<section |
|||
class="section-Kanban-view w-100 float-left kanban-task-container "> |
|||
<div class="container"> |
|||
<div class="row"> |
|||
<div class="col-lg-12"> |
|||
<div class="container-tasks"> |
|||
<t t-foreach="grouped_tasks" |
|||
t-as="tasks"> |
|||
<div class="container-section-tasks"> |
|||
<h5> |
|||
<div t-if="not groupby == 'none'" |
|||
class="table-light"> |
|||
<div t-if="groupby == 'project'" |
|||
t-attf-colspan="{{grouped_tasks_colspan}}"> |
|||
<div name="project_name" |
|||
class="d-flex w-100 align-items-center"> |
|||
<span t-field="tasks[0].sudo().project_id.name"/> |
|||
</div> |
|||
</div> |
|||
<div t-if="groupby == 'milestone'" |
|||
t-attf-colspan="{{grouped_tasks_colspan}}"> |
|||
<span t-if="tasks[0].sudo().milestone_id and tasks[0].sudo().allow_milestones" |
|||
class="text-truncate" |
|||
t-field="tasks[0].sudo().milestone_id.name"/> |
|||
<span t-else="">No |
|||
Milestone |
|||
</span> |
|||
</div> |
|||
<div t-if="groupby == 'stage'" |
|||
t-attf-colspan="{{grouped_tasks_colspan}}"> |
|||
<span class="text-truncate" |
|||
t-field="tasks[0].sudo().stage_id.name"/> |
|||
</div> |
|||
<div t-if="groupby == 'priority'" |
|||
t-attf-colspan="{{grouped_tasks_colspan}}"> |
|||
<span class="text-truncate" |
|||
t-field="tasks[0].sudo().priority"/> |
|||
</div> |
|||
<div t-if="groupby == 'status'" |
|||
t-attf-colspan="{{grouped_tasks_colspan}}"> |
|||
<span class="text-truncate" |
|||
t-field="tasks[0].sudo().kanban_state"/> |
|||
</div> |
|||
<div t-if="groupby == 'customer'" |
|||
t-attf-colspan="{{grouped_tasks_colspan}}"> |
|||
<span class="text-truncate" |
|||
t-field="tasks[0].sudo().partner_id.name"/> |
|||
<t t-if="not tasks[0].sudo().partner_id"> |
|||
None |
|||
</t> |
|||
</div> |
|||
</div> |
|||
</h5> |
|||
<div class="container-progress-bar"> |
|||
<t t-set="done_count" |
|||
t-value="len(tasks.filtered(lambda t: t.kanban_state == 'done'))"/> |
|||
<t t-set="blocked_count" |
|||
t-value="len(tasks.filtered(lambda t: t.kanban_state == 'blocked'))"/> |
|||
<div style="display:flex"> |
|||
<div class="progres-bar" |
|||
style="display:flex;"> |
|||
<t t-set="total_count" |
|||
t-value="len(tasks)"/> |
|||
<t t-set="green_ratio" |
|||
t-value="done_count / total_count"/> |
|||
<t t-set="red_ratio" |
|||
t-value="blocked_count / total_count"/> |
|||
<div class="progres-bar-green" |
|||
t-att-style="'width:' + str(green_ratio * 100) + '%'"/> |
|||
<div class="progres-bar-red" |
|||
t-att-style="'width:' + str(red_ratio * 100) + '%'"/> |
|||
</div> |
|||
<div class="progress-number text-end" |
|||
style="padding-left: 3rem;"> |
|||
<t t-esc="len(tasks)"/> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
<t t-foreach="tasks" |
|||
t-as="task"> |
|||
<div class="task-box w-100 float-left p-2"> |
|||
<div class="w-75 float-left"> |
|||
<h6> |
|||
<a t-attf-href="/my/#{task_url}/#{task.id}?{{ keep_query() }}"> |
|||
<strong> |
|||
<span t-field="task.name"/> |
|||
</strong> |
|||
</a> |
|||
</h6> |
|||
<span> |
|||
<span t-field="task.project_id.name"/> |
|||
</span> |
|||
<div class="clock"> |
|||
<img src="/project_website_kanban_view/static/src/images/clock.png"/> |
|||
<span class="date-task-box"> |
|||
<span t-field="task.date_deadline"/> |
|||
</span> |
|||
</div> |
|||
</div> |
|||
<div class="w-25 profile-pic-container float-left pt-4 d-flex "> |
|||
<span class="input-button float-left"> |
|||
<t t-call="project.portal_my_tasks_state_widget_template"> |
|||
<t t-set="path" |
|||
t-value="'tasks'"/> |
|||
</t> |
|||
</span> |
|||
<div class="img-task text-right d-flex"> |
|||
<t t-set="assignees" |
|||
t-value="task.sudo().user_ids"/> |
|||
<t t-if="assignees"> |
|||
<img class="rounded-circle o_portal_contact_img me-2" |
|||
t-attf-src="#{image_data_uri(assignees[:1].avatar_1024)}" |
|||
alt="User" |
|||
style="width: 20px; height: 20px;" |
|||
t-att-title="assignees[:1].name"/> |
|||
<span class="rounded-circle o_portal_contact_img me-2 text-center fw-bold" |
|||
t-if="len(assignees) > 1" |
|||
t-out="' + %s' % (len(assignees) - 1)" |
|||
t-att-title="'\n'.join(assignees[1:].mapped('name'))"/> |
|||
</t> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</t> |
|||
</div> |
|||
</t> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</section> |
|||
</t> |
|||
</template> |
|||
<!-- Adding the Project Task Kanban Template before the List Table Template --> |
|||
<template id="kanban_task_view_template_inherit" |
|||
inherit_id="portal.portal_table"> |
|||
<xpath expr="//table[hasclass('o_portal_my_doc_table')]" |
|||
position="before"> |
|||
<t t-call="project_website_kanban_view.project_task_kanban_view_template"/> |
|||
</xpath> |
|||
</template> |
|||
</odoo> |
@ -0,0 +1,25 @@ |
|||
<?xml version="1.0" encoding="UTF-8" ?> |
|||
<odoo> |
|||
<!--Inherited the res.config.setting to add the fields --> |
|||
<record id="res_config_settings_view_form" model="ir.ui.view"> |
|||
<field name="name">res.config.settings.view.form.inherit.project.website.kanban.view</field> |
|||
<field name="model">res.config.settings</field> |
|||
<field name="inherit_id" ref="project.res_config_settings_view_form"/> |
|||
<field name="arch" type="xml"> |
|||
<xpath expr="//div[@data-key='project']" position="inside"> |
|||
<h2>Tasks</h2> |
|||
<div class="row mt16 o_settings_container"> |
|||
<div class="o_setting_box o_searchable_setting col-12 col-lg-6"> |
|||
<div class="row mt16"> |
|||
<label string="Tasks per page in kanban view" |
|||
for="task_per_pager"/> |
|||
</div> |
|||
<div> |
|||
<field name="task_per_pager" class="oe_inline"/> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</xpath> |
|||
</field> |
|||
</record> |
|||
</odoo> |