diff --git a/kanban_sticky_state/README.rst b/kanban_sticky_state/README.rst new file mode 100644 index 000000000..0ab2da051 --- /dev/null +++ b/kanban_sticky_state/README.rst @@ -0,0 +1,46 @@ +.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg + :target: https://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 + +Kanban Sticky State +==================== +Kanban Sticky State helps you to stick kanban heading at top and not move it + +Configuration +============= +* No additional configurations needed + +Company +------- +* `Cybrosys Techno Solutions `__ + +License +------- +Affero General Public License, Version 3 (AGPL v3) +(https://www.gnu.org/licenses/agpl-3.0-standalone.html) + +Credits +------- +Developer: (V15) Fathima Mazlin AM, 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/kanban_sticky_state/__init__.py b/kanban_sticky_state/__init__.py new file mode 100644 index 000000000..f5cd07f61 --- /dev/null +++ b/kanban_sticky_state/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author:Fathima Mazlin AM (odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +############################################################################### +from . import models diff --git a/kanban_sticky_state/__manifest__.py b/kanban_sticky_state/__manifest__.py new file mode 100644 index 000000000..64350f558 --- /dev/null +++ b/kanban_sticky_state/__manifest__.py @@ -0,0 +1,54 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Fathima Mazlin AM (odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +############################################################################### +{ + 'name': "Kanban Sticky State", + 'version': '15.0.1.0.0', + 'category': 'Extra Tools', + 'summary': 'Kanban Sticky State helps you to stick kanban heading at ' + 'top and not move it.', + 'description': 'The sticky state in Kanban systems allows teams to track' + 'and manage work items effectively, promote collaboration,' + ' and identify bottlenecks or areas where tasks are ' + 'getting stuck. By visualizing the sticky state, teams ' + 'can quickly identify tasks that require attention and ' + 'take appropriate action to keep the workflow flowing' + 'smoothly.', + 'author': 'Cybrosys Techno Solutions', + 'company': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'website': "https://www.cybrosys.com", + 'depends': ['base_setup'], + 'data': [ + 'views/res_config_settings_views.xml', + ], + 'assets': { + 'web.assets_backend': [ + 'kanban_sticky_state/static/src/js/kanban_column.js', + 'kanban_sticky_state/static/src/css/kanban_sticky_state.css', + ], + }, + 'images': ['static/description/banner.jpg'], + 'license': 'AGPL-3', + 'installable': True, + 'auto_install': False, + 'application': False, +} diff --git a/kanban_sticky_state/doc/RELEASE_NOTES.md b/kanban_sticky_state/doc/RELEASE_NOTES.md new file mode 100644 index 000000000..6f092f579 --- /dev/null +++ b/kanban_sticky_state/doc/RELEASE_NOTES.md @@ -0,0 +1,6 @@ +## Module + +#### 30.09.2023 +#### Version 15.0.1.0.0 +#### ADD + - Initial Commit for Kanban Sticky State diff --git a/kanban_sticky_state/models/__init__.py b/kanban_sticky_state/models/__init__.py new file mode 100644 index 000000000..78602a082 --- /dev/null +++ b/kanban_sticky_state/models/__init__.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author:Fathima Mazlin AM (odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +############################################################################### +from . import ir_http +from . import res_config_settings diff --git a/kanban_sticky_state/models/ir_http.py b/kanban_sticky_state/models/ir_http.py new file mode 100644 index 000000000..067ef33cb --- /dev/null +++ b/kanban_sticky_state/models/ir_http.py @@ -0,0 +1,37 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Fathima Mazlin AM (odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +############################################################################### +from odoo import models + + +class IrHttp(models.AbstractModel): + """Extends the 'ir.http' class to include the 'kanban_sticky_state' + parameter in session info. """ + _inherit = 'ir.http' + + def session_info(self): + """Overrides the session_info method to include the + 'kanban_sticky_state' parameter.""" + res = super(IrHttp, self).session_info() + res['is_kanban_sticky_state'] = self.env[ + 'ir.config_parameter'].sudo().get_param( + 'kanban_sticky_state.is_kanban_sticky_state') + return res diff --git a/kanban_sticky_state/models/res_config_settings.py b/kanban_sticky_state/models/res_config_settings.py new file mode 100644 index 000000000..be1ea24c0 --- /dev/null +++ b/kanban_sticky_state/models/res_config_settings.py @@ -0,0 +1,37 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Fathima Mazlin AM (odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +############################################################################### +from odoo import fields, models + + +class ResConfigSettings(models.TransientModel): + """This model extends 'res.config.settings' to add a new configuration + parameter that controls the behavior of the Kanban view in Odoo. It + provides the option to make the Kanban view state sticky for each user.""" + _inherit = 'res.config.settings' + + is_kanban_sticky_state = fields.Boolean( + string="Kanban Sticky State", + config_parameter='kanban_sticky_state.is_kanban_sticky_state', + help="Set this field to True if you want the Kanban view state to be" + " sticky.When this option is enabled, the last state of the " + "Kanban view for each user will be remembered when they log in" + " again.") diff --git a/kanban_sticky_state/static/description/assets/icons/check.png b/kanban_sticky_state/static/description/assets/icons/check.png new file mode 100644 index 000000000..c8e85f51d Binary files /dev/null and b/kanban_sticky_state/static/description/assets/icons/check.png differ diff --git a/kanban_sticky_state/static/description/assets/icons/chevron.png b/kanban_sticky_state/static/description/assets/icons/chevron.png new file mode 100644 index 000000000..2089293d6 Binary files /dev/null and b/kanban_sticky_state/static/description/assets/icons/chevron.png differ diff --git a/kanban_sticky_state/static/description/assets/icons/cogs.png b/kanban_sticky_state/static/description/assets/icons/cogs.png new file mode 100644 index 000000000..95d0bad62 Binary files /dev/null and b/kanban_sticky_state/static/description/assets/icons/cogs.png differ diff --git a/kanban_sticky_state/static/description/assets/icons/consultation.png b/kanban_sticky_state/static/description/assets/icons/consultation.png new file mode 100644 index 000000000..8319d4baa Binary files /dev/null and b/kanban_sticky_state/static/description/assets/icons/consultation.png differ diff --git a/kanban_sticky_state/static/description/assets/icons/ecom-black.png b/kanban_sticky_state/static/description/assets/icons/ecom-black.png new file mode 100644 index 000000000..a9385ff13 Binary files /dev/null and b/kanban_sticky_state/static/description/assets/icons/ecom-black.png differ diff --git a/kanban_sticky_state/static/description/assets/icons/education-black.png b/kanban_sticky_state/static/description/assets/icons/education-black.png new file mode 100644 index 000000000..3eb09b27b Binary files /dev/null and b/kanban_sticky_state/static/description/assets/icons/education-black.png differ diff --git a/kanban_sticky_state/static/description/assets/icons/hotel-black.png b/kanban_sticky_state/static/description/assets/icons/hotel-black.png new file mode 100644 index 000000000..130f613be Binary files /dev/null and b/kanban_sticky_state/static/description/assets/icons/hotel-black.png differ diff --git a/kanban_sticky_state/static/description/assets/icons/license.png b/kanban_sticky_state/static/description/assets/icons/license.png new file mode 100644 index 000000000..a5869797e Binary files /dev/null and b/kanban_sticky_state/static/description/assets/icons/license.png differ diff --git a/kanban_sticky_state/static/description/assets/icons/lifebuoy.png b/kanban_sticky_state/static/description/assets/icons/lifebuoy.png new file mode 100644 index 000000000..658d56ccc Binary files /dev/null and b/kanban_sticky_state/static/description/assets/icons/lifebuoy.png differ diff --git a/kanban_sticky_state/static/description/assets/icons/manufacturing-black.png b/kanban_sticky_state/static/description/assets/icons/manufacturing-black.png new file mode 100644 index 000000000..697eb0e9f Binary files /dev/null and b/kanban_sticky_state/static/description/assets/icons/manufacturing-black.png differ diff --git a/kanban_sticky_state/static/description/assets/icons/pos-black.png b/kanban_sticky_state/static/description/assets/icons/pos-black.png new file mode 100644 index 000000000..97c0f90c1 Binary files /dev/null and b/kanban_sticky_state/static/description/assets/icons/pos-black.png differ diff --git a/kanban_sticky_state/static/description/assets/icons/puzzle.png b/kanban_sticky_state/static/description/assets/icons/puzzle.png new file mode 100644 index 000000000..65cf854e7 Binary files /dev/null and b/kanban_sticky_state/static/description/assets/icons/puzzle.png differ diff --git a/kanban_sticky_state/static/description/assets/icons/restaurant-black.png b/kanban_sticky_state/static/description/assets/icons/restaurant-black.png new file mode 100644 index 000000000..4a35eb939 Binary files /dev/null and b/kanban_sticky_state/static/description/assets/icons/restaurant-black.png differ diff --git a/kanban_sticky_state/static/description/assets/icons/service-black.png b/kanban_sticky_state/static/description/assets/icons/service-black.png new file mode 100644 index 000000000..301ab51cb Binary files /dev/null and b/kanban_sticky_state/static/description/assets/icons/service-black.png differ diff --git a/kanban_sticky_state/static/description/assets/icons/trading-black.png b/kanban_sticky_state/static/description/assets/icons/trading-black.png new file mode 100644 index 000000000..9398ba2f1 Binary files /dev/null and b/kanban_sticky_state/static/description/assets/icons/trading-black.png differ diff --git a/kanban_sticky_state/static/description/assets/icons/training.png b/kanban_sticky_state/static/description/assets/icons/training.png new file mode 100644 index 000000000..884ca024d Binary files /dev/null and b/kanban_sticky_state/static/description/assets/icons/training.png differ diff --git a/kanban_sticky_state/static/description/assets/icons/update.png b/kanban_sticky_state/static/description/assets/icons/update.png new file mode 100644 index 000000000..ecbc5a01a Binary files /dev/null and b/kanban_sticky_state/static/description/assets/icons/update.png differ diff --git a/kanban_sticky_state/static/description/assets/icons/user.png b/kanban_sticky_state/static/description/assets/icons/user.png new file mode 100644 index 000000000..6ffb23d9f Binary files /dev/null and b/kanban_sticky_state/static/description/assets/icons/user.png differ diff --git a/kanban_sticky_state/static/description/assets/icons/wrench.png b/kanban_sticky_state/static/description/assets/icons/wrench.png new file mode 100644 index 000000000..6c04dea0f Binary files /dev/null and b/kanban_sticky_state/static/description/assets/icons/wrench.png differ diff --git a/kanban_sticky_state/static/description/assets/misc/categories.png b/kanban_sticky_state/static/description/assets/misc/categories.png new file mode 100644 index 000000000..bedf1e0b1 Binary files /dev/null and b/kanban_sticky_state/static/description/assets/misc/categories.png differ diff --git a/kanban_sticky_state/static/description/assets/misc/check-box.png b/kanban_sticky_state/static/description/assets/misc/check-box.png new file mode 100644 index 000000000..42caf24b9 Binary files /dev/null and b/kanban_sticky_state/static/description/assets/misc/check-box.png differ diff --git a/kanban_sticky_state/static/description/assets/misc/compass.png b/kanban_sticky_state/static/description/assets/misc/compass.png new file mode 100644 index 000000000..d5fed8faa Binary files /dev/null and b/kanban_sticky_state/static/description/assets/misc/compass.png differ diff --git a/kanban_sticky_state/static/description/assets/misc/corporate.png b/kanban_sticky_state/static/description/assets/misc/corporate.png new file mode 100644 index 000000000..2eb13edbf Binary files /dev/null and b/kanban_sticky_state/static/description/assets/misc/corporate.png differ diff --git a/kanban_sticky_state/static/description/assets/misc/customer-support.png b/kanban_sticky_state/static/description/assets/misc/customer-support.png new file mode 100644 index 000000000..79efc72ed Binary files /dev/null and b/kanban_sticky_state/static/description/assets/misc/customer-support.png differ diff --git a/kanban_sticky_state/static/description/assets/misc/cybrosys-logo.png b/kanban_sticky_state/static/description/assets/misc/cybrosys-logo.png new file mode 100644 index 000000000..cc3cc0ccf Binary files /dev/null and b/kanban_sticky_state/static/description/assets/misc/cybrosys-logo.png differ diff --git a/kanban_sticky_state/static/description/assets/misc/features.png b/kanban_sticky_state/static/description/assets/misc/features.png new file mode 100644 index 000000000..b41769f77 Binary files /dev/null and b/kanban_sticky_state/static/description/assets/misc/features.png differ diff --git a/kanban_sticky_state/static/description/assets/misc/logo.png b/kanban_sticky_state/static/description/assets/misc/logo.png new file mode 100644 index 000000000..478462d3e Binary files /dev/null and b/kanban_sticky_state/static/description/assets/misc/logo.png differ diff --git a/kanban_sticky_state/static/description/assets/misc/pictures.png b/kanban_sticky_state/static/description/assets/misc/pictures.png new file mode 100644 index 000000000..56d255fe9 Binary files /dev/null and b/kanban_sticky_state/static/description/assets/misc/pictures.png differ diff --git a/kanban_sticky_state/static/description/assets/misc/pie-chart.png b/kanban_sticky_state/static/description/assets/misc/pie-chart.png new file mode 100644 index 000000000..426e05244 Binary files /dev/null and b/kanban_sticky_state/static/description/assets/misc/pie-chart.png differ diff --git a/kanban_sticky_state/static/description/assets/misc/right-arrow.png b/kanban_sticky_state/static/description/assets/misc/right-arrow.png new file mode 100644 index 000000000..730984a06 Binary files /dev/null and b/kanban_sticky_state/static/description/assets/misc/right-arrow.png differ diff --git a/kanban_sticky_state/static/description/assets/misc/star.png b/kanban_sticky_state/static/description/assets/misc/star.png new file mode 100644 index 000000000..2eb9ab29f Binary files /dev/null and b/kanban_sticky_state/static/description/assets/misc/star.png differ diff --git a/kanban_sticky_state/static/description/assets/misc/support.png b/kanban_sticky_state/static/description/assets/misc/support.png new file mode 100644 index 000000000..4f18b8b82 Binary files /dev/null and b/kanban_sticky_state/static/description/assets/misc/support.png differ diff --git a/kanban_sticky_state/static/description/assets/misc/whatsapp.png b/kanban_sticky_state/static/description/assets/misc/whatsapp.png new file mode 100644 index 000000000..d513a5356 Binary files /dev/null and b/kanban_sticky_state/static/description/assets/misc/whatsapp.png differ diff --git a/kanban_sticky_state/static/description/assets/modules/access_restriction_by_ip.png b/kanban_sticky_state/static/description/assets/modules/access_restriction_by_ip.png new file mode 100644 index 000000000..707e2b7ed Binary files /dev/null and b/kanban_sticky_state/static/description/assets/modules/access_restriction_by_ip.png differ diff --git a/kanban_sticky_state/static/description/assets/modules/hide_menu_user.png b/kanban_sticky_state/static/description/assets/modules/hide_menu_user.png new file mode 100644 index 000000000..6bc155887 Binary files /dev/null and b/kanban_sticky_state/static/description/assets/modules/hide_menu_user.png differ diff --git a/kanban_sticky_state/static/description/assets/modules/login_user_detail.png b/kanban_sticky_state/static/description/assets/modules/login_user_detail.png new file mode 100644 index 000000000..4fbe85ac1 Binary files /dev/null and b/kanban_sticky_state/static/description/assets/modules/login_user_detail.png differ diff --git a/kanban_sticky_state/static/description/assets/modules/multi_branch_base.png b/kanban_sticky_state/static/description/assets/modules/multi_branch_base.png new file mode 100644 index 000000000..6f654cfdb Binary files /dev/null and b/kanban_sticky_state/static/description/assets/modules/multi_branch_base.png differ diff --git a/kanban_sticky_state/static/description/assets/modules/todo_list.png b/kanban_sticky_state/static/description/assets/modules/todo_list.png new file mode 100644 index 000000000..12bec092a Binary files /dev/null and b/kanban_sticky_state/static/description/assets/modules/todo_list.png differ diff --git a/kanban_sticky_state/static/description/assets/modules/web_login_styles.png b/kanban_sticky_state/static/description/assets/modules/web_login_styles.png new file mode 100644 index 000000000..e20126a45 Binary files /dev/null and b/kanban_sticky_state/static/description/assets/modules/web_login_styles.png differ diff --git a/kanban_sticky_state/static/description/assets/screenshots/1.png b/kanban_sticky_state/static/description/assets/screenshots/1.png new file mode 100644 index 000000000..754db8400 Binary files /dev/null and b/kanban_sticky_state/static/description/assets/screenshots/1.png differ diff --git a/kanban_sticky_state/static/description/assets/screenshots/2.png b/kanban_sticky_state/static/description/assets/screenshots/2.png new file mode 100644 index 000000000..95521835f Binary files /dev/null and b/kanban_sticky_state/static/description/assets/screenshots/2.png differ diff --git a/kanban_sticky_state/static/description/assets/screenshots/3.png b/kanban_sticky_state/static/description/assets/screenshots/3.png new file mode 100644 index 000000000..3767ad7f2 Binary files /dev/null and b/kanban_sticky_state/static/description/assets/screenshots/3.png differ diff --git a/kanban_sticky_state/static/description/assets/screenshots/hero.gif b/kanban_sticky_state/static/description/assets/screenshots/hero.gif new file mode 100644 index 000000000..54d8e45c6 Binary files /dev/null and b/kanban_sticky_state/static/description/assets/screenshots/hero.gif differ diff --git a/kanban_sticky_state/static/description/banner.jpg b/kanban_sticky_state/static/description/banner.jpg new file mode 100644 index 000000000..e044e9158 Binary files /dev/null and b/kanban_sticky_state/static/description/banner.jpg differ diff --git a/kanban_sticky_state/static/description/icon.png b/kanban_sticky_state/static/description/icon.png new file mode 100644 index 000000000..4751deff9 Binary files /dev/null and b/kanban_sticky_state/static/description/icon.png differ diff --git a/kanban_sticky_state/static/description/index.html b/kanban_sticky_state/static/description/index.html new file mode 100644 index 000000000..5cd93f4a0 --- /dev/null +++ b/kanban_sticky_state/static/description/index.html @@ -0,0 +1,598 @@ +
+ +
+ +
+
+ Community +
+
+ Enterprise +
+
+
+ +
+
+
+ +

+ Kanban Sticky State

+

+ Kanban Sticky State Helps you to Stick Kanban Heading at + Top .

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

+ Explore This + Module

+
+ + + + +
+
+ +
+

+ Overview +

+
+
+
+ You can maintain the kanban heading in place at the top by using Kanban + Sticky State. +
+
+ + + +
+
+ +
+

+ Features +

+
+
+
+
+ + Keep the Kanban Header at the Top. + +
+
+
+
+ + Available in Odoo 15 Community , Enterprise.. + +
+
+
+ + + +
+
+ +
+

+ Screenshots +

+
+
+
+ +
+

+ Configuration +

+

+ Go to General Settings -> + Kanban Sticky State + -> + Enable Kanban Sticky State.

+ +
+ +
+

+ When scrolling the kanban view we can see the Kanban State is + Sticky.

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

Related + Products +

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

+ Our Services +

+
+ +
+
+
+
+ +
+
+ Odoo + Customization
+
+ +
+
+ +
+
+ Odoo + Implementation
+
+ +
+
+ +
+
+ Odoo + Support
+
+ + +
+
+ +
+
+ Hire + Odoo + Developer
+
+ +
+
+ +
+
+ Odoo + Integration
+
+ +
+
+ +
+
+ Odoo + Migration
+
+ + +
+
+ +
+
+ Odoo + Consultancy
+
+ +
+
+ +
+
+ Odoo + Implementation
+
+ +
+
+ +
+
+ Odoo + Licensing Consultancy
+
+
+ +
+ + + + + +
+
+ +
+

+ Our + Industries +

+
+ +
+
+
+
+ +
+ Trading +
+

+ Easily procure + and + sell your products

+
+
+ +
+
+ +
+ POS +
+

+ Easy + configuration + and convivial experience

+
+
+ +
+
+ +
+ Education +
+

+ A platform for + educational management

+
+
+ +
+
+ +
+ Manufacturing +
+

+ Plan, track and + schedule your operations

+
+
+ +
+
+ +
+ E-commerce & Website +
+

+ Mobile + friendly, + awe-inspiring product pages

+
+
+ +
+
+ +
+ Service Management +
+

+ Keep track of + services and invoice

+
+
+ +
+
+ +
+ Restaurant +
+

+ Run your bar or + restaurant methodically

+
+
+ +
+
+ +
+ Hotel Management +
+

+ An + all-inclusive + hotel management application

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

+ Support +

+
+
+
+
+
+
+ +
+
+

Need Help?

+

Got questions or need help? + Get in touch.

+ +

+ odoo@cybrosys.com

+
+
+
+
+
+
+
+ +
+
+

WhatsApp

+

Say hi to us on WhatsApp!

+ +

+ +91 86068 + 27707

+
+
+
+
+
+
+
+ +
+
+
+ diff --git a/kanban_sticky_state/static/src/css/kanban_sticky_state.css b/kanban_sticky_state/static/src/css/kanban_sticky_state.css new file mode 100644 index 000000000..02b5f0176 --- /dev/null +++ b/kanban_sticky_state/static/src/css/kanban_sticky_state.css @@ -0,0 +1,10 @@ +.is_kanban_sticky_state{ + position: sticky; + top: 0 !important; + height: 75px; + z-index: 99; + background: #f8f9fa; +} +.kanban-label { + margin-right: 8px; +} diff --git a/kanban_sticky_state/static/src/js/kanban_column.js b/kanban_sticky_state/static/src/js/kanban_column.js new file mode 100644 index 000000000..519f6b9ec --- /dev/null +++ b/kanban_sticky_state/static/src/js/kanban_column.js @@ -0,0 +1,21 @@ +odoo.define('kanban_sticky_state.kanban_column', function (require) { +"use strict"; + + var KanbanColumn = require('web.KanbanColumn'); + var session = require('web.session'); + /** + Include KanbanColumn to add class for sticky state of kanban + **/ + KanbanColumn.include({ + /** To start the KanbanColumn for kanban sticky state **/ + start: function () { + this._super.apply(this, arguments) + if (session.is_kanban_sticky_state) { + this.$header[0].classList.add("is_kanban_sticky_state"); + } else { + this.$header[0].classList.remove("is_kanban_sticky_state"); + } + } + }); + return KanbanColumn; +}); diff --git a/kanban_sticky_state/views/res_config_settings_views.xml b/kanban_sticky_state/views/res_config_settings_views.xml new file mode 100644 index 000000000..7d32374c9 --- /dev/null +++ b/kanban_sticky_state/views/res_config_settings_views.xml @@ -0,0 +1,29 @@ + + + + + + res.config.settings.view.form.inherit.kanban.sticky.state + + res.config.settings + + + +
+

Kanban Sticky State

+
+
+
+
+
+
+
+
+
+