diff --git a/hierarchical_chart_widget/README.rst b/hierarchical_chart_widget/README.rst new file mode 100644 index 000000000..8d8ff7436 --- /dev/null +++ b/hierarchical_chart_widget/README.rst @@ -0,0 +1,50 @@ +.. image:: https://img.shields.io/badge/license-LGPL--3-green.svg + :target: https://www.gnu.org/licenses/lgpl-3.0-standalone.html + :alt: License: LGPL-3 + +Hierarchical Chart Widget +========================= + +* This module ensure smart management of Department with the widget view + +Configuration +============ + - www.odoo.com/documentation/16.0/setup/install.html + - Install our custom addon + +Company +------- +* `Cybrosys Techno Solutions `__ + +License +------- +General Public License, Version 3 (LGPL v3). +(https://www.gnu.org/licenses/lgpl-3.0-standalone.html) + +Credits +------- +* Developer: (V16) NIHALA KP, 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 +-------- +This module is maintained by Cybrosys Technologies. + +For support and more information, please visit https://www.cybrosys.com + +.. image:: https://cybrosys.com/images/logo.png + :target: https://cybrosys.com" + +Further Information +----------- +HTML Description: ``__ + + diff --git a/hierarchical_chart_widget/__init__.py b/hierarchical_chart_widget/__init__.py new file mode 100644 index 000000000..097bdb395 --- /dev/null +++ b/hierarchical_chart_widget/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +from . import models diff --git a/hierarchical_chart_widget/__manifest__.py b/hierarchical_chart_widget/__manifest__.py new file mode 100644 index 000000000..a950e3a07 --- /dev/null +++ b/hierarchical_chart_widget/__manifest__.py @@ -0,0 +1,58 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +{ + 'name': 'Hierarchical Chart Widget', + 'version': '16.0.1.0.0', + 'category': 'Productivity', + 'summary': 'Organization Chart Widget that displays parent and child' + ' relationships', + 'description': 'The user is looking for an Organization Chart Widget' + 'that displays both parent and child relationships within' + ' an organizations structure.', + 'author': 'Cybrosys Techno Solutions', + 'company': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'website': 'https://www.cybrosys.com', + 'depends': ['hr'], + 'data': [ + 'views/hr_department_views.xml' + ], + "assets": + {"web.assets_backend": [ + '/hierarchical_chart_widget/static/src/js/org_chart.js', + '/hierarchical_chart_widget/static/src/xml/org_chart_template.xml' + ], + "web.assets_frontend": [ + '/hierarchical_chart_widget/static/src/scss/org_template_style.scss', + ]}, + 'images': [ + 'static/description/banner.png', + 'static/description/icon.png' + ], + 'license': 'LGPL-3', + 'images': [ + 'static/description/banner.png', + ], + 'installable': True, + 'auto_install': False, + 'application': False, +} diff --git a/hierarchical_chart_widget/doc/RELEASE_NOTES.md b/hierarchical_chart_widget/doc/RELEASE_NOTES.md new file mode 100644 index 000000000..8b146850c --- /dev/null +++ b/hierarchical_chart_widget/doc/RELEASE_NOTES.md @@ -0,0 +1,7 @@ +## Module + +#### 16.04.2024 +#### Version 16.0.1.0.0 +#### ADD +- Initial Commit Hierarchical Chart Widget + diff --git a/hierarchical_chart_widget/models/__init__.py b/hierarchical_chart_widget/models/__init__.py new file mode 100644 index 000000000..fb3cb920f --- /dev/null +++ b/hierarchical_chart_widget/models/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +from . import hr_department diff --git a/hierarchical_chart_widget/models/hr_department.py b/hierarchical_chart_widget/models/hr_department.py new file mode 100644 index 000000000..aaa1a1d7a --- /dev/null +++ b/hierarchical_chart_widget/models/hr_department.py @@ -0,0 +1,69 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +from odoo import api, fields, models + + +class HrDepartment(models.Model): + """This model is used for storing a field in contacts""" + _inherit = 'hr.department' + + child_org_ids = fields.One2many('hr.department', + 'master_department_id', + help='Department Lines') + is_parent_child = fields.Boolean(string='Is parent ') + + @api.model + def get_child_dept(self, department_id, model): + """Fetching the datas to widget""" + model_id = self.env['ir.model'].search([('model', '=', model)]) + department_id = self.env[model_id.model].browse(department_id) + parent_id = department_id.parent_id + child_data = [{'name': child.name, 'id': child.id} for child in + department_id.child_ids] + + result = { + 'parent': { + 'name': parent_id.name, + 'id': parent_id.id + } if parent_id else None, + 'self': department_id.name, + 'child': child_data + } + return result + + @api.model_create_multi + def create(self, vals_list): + """To show the widget at the time of creation""" + res = super(HrDepartment, self).create(vals_list) + for record in res: + if record.parent_id or record.child_ids: + record.is_parent_child = True + else: + record.is_parent_child = False + return res + + def write(self, values): + """To update the widget at the time of update""" + res = super(HrDepartment, self).write(values) + if 'parent_id' in values: + self.is_parent_child = True + return res diff --git a/hierarchical_chart_widget/static/description/assets/icons/check.png b/hierarchical_chart_widget/static/description/assets/icons/check.png new file mode 100644 index 000000000..c8e85f51d Binary files /dev/null and b/hierarchical_chart_widget/static/description/assets/icons/check.png differ diff --git a/hierarchical_chart_widget/static/description/assets/icons/chevron.png b/hierarchical_chart_widget/static/description/assets/icons/chevron.png new file mode 100644 index 000000000..2089293d6 Binary files /dev/null and b/hierarchical_chart_widget/static/description/assets/icons/chevron.png differ diff --git a/hierarchical_chart_widget/static/description/assets/icons/cogs.png b/hierarchical_chart_widget/static/description/assets/icons/cogs.png new file mode 100644 index 000000000..95d0bad62 Binary files /dev/null and b/hierarchical_chart_widget/static/description/assets/icons/cogs.png differ diff --git a/hierarchical_chart_widget/static/description/assets/icons/consultation.png b/hierarchical_chart_widget/static/description/assets/icons/consultation.png new file mode 100644 index 000000000..8319d4baa Binary files /dev/null and b/hierarchical_chart_widget/static/description/assets/icons/consultation.png differ diff --git a/hierarchical_chart_widget/static/description/assets/icons/ecom-black.png b/hierarchical_chart_widget/static/description/assets/icons/ecom-black.png new file mode 100644 index 000000000..a9385ff13 Binary files /dev/null and b/hierarchical_chart_widget/static/description/assets/icons/ecom-black.png differ diff --git a/hierarchical_chart_widget/static/description/assets/icons/education-black.png b/hierarchical_chart_widget/static/description/assets/icons/education-black.png new file mode 100644 index 000000000..3eb09b27b Binary files /dev/null and b/hierarchical_chart_widget/static/description/assets/icons/education-black.png differ diff --git a/hierarchical_chart_widget/static/description/assets/icons/hotel-black.png b/hierarchical_chart_widget/static/description/assets/icons/hotel-black.png new file mode 100644 index 000000000..130f613be Binary files /dev/null and b/hierarchical_chart_widget/static/description/assets/icons/hotel-black.png differ diff --git a/hierarchical_chart_widget/static/description/assets/icons/license.png b/hierarchical_chart_widget/static/description/assets/icons/license.png new file mode 100644 index 000000000..a5869797e Binary files /dev/null and b/hierarchical_chart_widget/static/description/assets/icons/license.png differ diff --git a/hierarchical_chart_widget/static/description/assets/icons/lifebuoy.png b/hierarchical_chart_widget/static/description/assets/icons/lifebuoy.png new file mode 100644 index 000000000..658d56ccc Binary files /dev/null and b/hierarchical_chart_widget/static/description/assets/icons/lifebuoy.png differ diff --git a/hierarchical_chart_widget/static/description/assets/icons/manufacturing-black.png b/hierarchical_chart_widget/static/description/assets/icons/manufacturing-black.png new file mode 100644 index 000000000..697eb0e9f Binary files /dev/null and b/hierarchical_chart_widget/static/description/assets/icons/manufacturing-black.png differ diff --git a/hierarchical_chart_widget/static/description/assets/icons/pos-black.png b/hierarchical_chart_widget/static/description/assets/icons/pos-black.png new file mode 100644 index 000000000..97c0f90c1 Binary files /dev/null and b/hierarchical_chart_widget/static/description/assets/icons/pos-black.png differ diff --git a/hierarchical_chart_widget/static/description/assets/icons/puzzle.png b/hierarchical_chart_widget/static/description/assets/icons/puzzle.png new file mode 100644 index 000000000..65cf854e7 Binary files /dev/null and b/hierarchical_chart_widget/static/description/assets/icons/puzzle.png differ diff --git a/hierarchical_chart_widget/static/description/assets/icons/restaurant-black.png b/hierarchical_chart_widget/static/description/assets/icons/restaurant-black.png new file mode 100644 index 000000000..4a35eb939 Binary files /dev/null and b/hierarchical_chart_widget/static/description/assets/icons/restaurant-black.png differ diff --git a/hierarchical_chart_widget/static/description/assets/icons/service-black.png b/hierarchical_chart_widget/static/description/assets/icons/service-black.png new file mode 100644 index 000000000..301ab51cb Binary files /dev/null and b/hierarchical_chart_widget/static/description/assets/icons/service-black.png differ diff --git a/hierarchical_chart_widget/static/description/assets/icons/trading-black.png b/hierarchical_chart_widget/static/description/assets/icons/trading-black.png new file mode 100644 index 000000000..9398ba2f1 Binary files /dev/null and b/hierarchical_chart_widget/static/description/assets/icons/trading-black.png differ diff --git a/hierarchical_chart_widget/static/description/assets/icons/training.png b/hierarchical_chart_widget/static/description/assets/icons/training.png new file mode 100644 index 000000000..884ca024d Binary files /dev/null and b/hierarchical_chart_widget/static/description/assets/icons/training.png differ diff --git a/hierarchical_chart_widget/static/description/assets/icons/update.png b/hierarchical_chart_widget/static/description/assets/icons/update.png new file mode 100644 index 000000000..ecbc5a01a Binary files /dev/null and b/hierarchical_chart_widget/static/description/assets/icons/update.png differ diff --git a/hierarchical_chart_widget/static/description/assets/icons/user.png b/hierarchical_chart_widget/static/description/assets/icons/user.png new file mode 100644 index 000000000..6ffb23d9f Binary files /dev/null and b/hierarchical_chart_widget/static/description/assets/icons/user.png differ diff --git a/hierarchical_chart_widget/static/description/assets/icons/wrench.png b/hierarchical_chart_widget/static/description/assets/icons/wrench.png new file mode 100644 index 000000000..6c04dea0f Binary files /dev/null and b/hierarchical_chart_widget/static/description/assets/icons/wrench.png differ diff --git a/hierarchical_chart_widget/static/description/assets/misc/categories.png b/hierarchical_chart_widget/static/description/assets/misc/categories.png new file mode 100644 index 000000000..bedf1e0b1 Binary files /dev/null and b/hierarchical_chart_widget/static/description/assets/misc/categories.png differ diff --git a/hierarchical_chart_widget/static/description/assets/misc/check-box.png b/hierarchical_chart_widget/static/description/assets/misc/check-box.png new file mode 100644 index 000000000..42caf24b9 Binary files /dev/null and b/hierarchical_chart_widget/static/description/assets/misc/check-box.png differ diff --git a/hierarchical_chart_widget/static/description/assets/misc/compass.png b/hierarchical_chart_widget/static/description/assets/misc/compass.png new file mode 100644 index 000000000..d5fed8faa Binary files /dev/null and b/hierarchical_chart_widget/static/description/assets/misc/compass.png differ diff --git a/hierarchical_chart_widget/static/description/assets/misc/corporate.png b/hierarchical_chart_widget/static/description/assets/misc/corporate.png new file mode 100644 index 000000000..2eb13edbf Binary files /dev/null and b/hierarchical_chart_widget/static/description/assets/misc/corporate.png differ diff --git a/hierarchical_chart_widget/static/description/assets/misc/customer-support.png b/hierarchical_chart_widget/static/description/assets/misc/customer-support.png new file mode 100644 index 000000000..79efc72ed Binary files /dev/null and b/hierarchical_chart_widget/static/description/assets/misc/customer-support.png differ diff --git a/hierarchical_chart_widget/static/description/assets/misc/cybrosys-logo.png b/hierarchical_chart_widget/static/description/assets/misc/cybrosys-logo.png new file mode 100644 index 000000000..cc3cc0ccf Binary files /dev/null and b/hierarchical_chart_widget/static/description/assets/misc/cybrosys-logo.png differ diff --git a/hierarchical_chart_widget/static/description/assets/misc/features.png b/hierarchical_chart_widget/static/description/assets/misc/features.png new file mode 100644 index 000000000..b41769f77 Binary files /dev/null and b/hierarchical_chart_widget/static/description/assets/misc/features.png differ diff --git a/hierarchical_chart_widget/static/description/assets/misc/logo.png b/hierarchical_chart_widget/static/description/assets/misc/logo.png new file mode 100644 index 000000000..478462d3e Binary files /dev/null and b/hierarchical_chart_widget/static/description/assets/misc/logo.png differ diff --git a/hierarchical_chart_widget/static/description/assets/misc/pictures.png b/hierarchical_chart_widget/static/description/assets/misc/pictures.png new file mode 100644 index 000000000..56d255fe9 Binary files /dev/null and b/hierarchical_chart_widget/static/description/assets/misc/pictures.png differ diff --git a/hierarchical_chart_widget/static/description/assets/misc/pie-chart.png b/hierarchical_chart_widget/static/description/assets/misc/pie-chart.png new file mode 100644 index 000000000..426e05244 Binary files /dev/null and b/hierarchical_chart_widget/static/description/assets/misc/pie-chart.png differ diff --git a/hierarchical_chart_widget/static/description/assets/misc/right-arrow.png b/hierarchical_chart_widget/static/description/assets/misc/right-arrow.png new file mode 100644 index 000000000..730984a06 Binary files /dev/null and b/hierarchical_chart_widget/static/description/assets/misc/right-arrow.png differ diff --git a/hierarchical_chart_widget/static/description/assets/misc/star.png b/hierarchical_chart_widget/static/description/assets/misc/star.png new file mode 100644 index 000000000..2eb9ab29f Binary files /dev/null and b/hierarchical_chart_widget/static/description/assets/misc/star.png differ diff --git a/hierarchical_chart_widget/static/description/assets/misc/support.png b/hierarchical_chart_widget/static/description/assets/misc/support.png new file mode 100644 index 000000000..4f18b8b82 Binary files /dev/null and b/hierarchical_chart_widget/static/description/assets/misc/support.png differ diff --git a/hierarchical_chart_widget/static/description/assets/misc/whatsapp.png b/hierarchical_chart_widget/static/description/assets/misc/whatsapp.png new file mode 100644 index 000000000..d513a5356 Binary files /dev/null and b/hierarchical_chart_widget/static/description/assets/misc/whatsapp.png differ diff --git a/hierarchical_chart_widget/static/description/assets/modules/1.png b/hierarchical_chart_widget/static/description/assets/modules/1.png new file mode 100644 index 000000000..f3c986fc1 Binary files /dev/null and b/hierarchical_chart_widget/static/description/assets/modules/1.png differ diff --git a/hierarchical_chart_widget/static/description/assets/modules/2.png b/hierarchical_chart_widget/static/description/assets/modules/2.png new file mode 100644 index 000000000..d1d3775d6 Binary files /dev/null and b/hierarchical_chart_widget/static/description/assets/modules/2.png differ diff --git a/hierarchical_chart_widget/static/description/assets/modules/3.png b/hierarchical_chart_widget/static/description/assets/modules/3.png new file mode 100644 index 000000000..6c8c8adc3 Binary files /dev/null and b/hierarchical_chart_widget/static/description/assets/modules/3.png differ diff --git a/hierarchical_chart_widget/static/description/assets/modules/4.png b/hierarchical_chart_widget/static/description/assets/modules/4.png new file mode 100644 index 000000000..25ed3e0b6 Binary files /dev/null and b/hierarchical_chart_widget/static/description/assets/modules/4.png differ diff --git a/hierarchical_chart_widget/static/description/assets/modules/5.png b/hierarchical_chart_widget/static/description/assets/modules/5.png new file mode 100644 index 000000000..16ad8ca2d Binary files /dev/null and b/hierarchical_chart_widget/static/description/assets/modules/5.png differ diff --git a/hierarchical_chart_widget/static/description/assets/modules/6.png b/hierarchical_chart_widget/static/description/assets/modules/6.png new file mode 100644 index 000000000..42d7af8e6 Binary files /dev/null and b/hierarchical_chart_widget/static/description/assets/modules/6.png differ diff --git a/hierarchical_chart_widget/static/description/assets/screenshots/1.png b/hierarchical_chart_widget/static/description/assets/screenshots/1.png new file mode 100644 index 000000000..c4379fcb4 Binary files /dev/null and b/hierarchical_chart_widget/static/description/assets/screenshots/1.png differ diff --git a/hierarchical_chart_widget/static/description/assets/screenshots/2.png b/hierarchical_chart_widget/static/description/assets/screenshots/2.png new file mode 100644 index 000000000..0d531392b Binary files /dev/null and b/hierarchical_chart_widget/static/description/assets/screenshots/2.png differ diff --git a/hierarchical_chart_widget/static/description/assets/screenshots/3.png b/hierarchical_chart_widget/static/description/assets/screenshots/3.png new file mode 100644 index 000000000..308a01aea Binary files /dev/null and b/hierarchical_chart_widget/static/description/assets/screenshots/3.png differ diff --git a/hierarchical_chart_widget/static/description/assets/screenshots/4.png b/hierarchical_chart_widget/static/description/assets/screenshots/4.png new file mode 100644 index 000000000..e0a9eae36 Binary files /dev/null and b/hierarchical_chart_widget/static/description/assets/screenshots/4.png differ diff --git a/hierarchical_chart_widget/static/description/assets/screenshots/5.png b/hierarchical_chart_widget/static/description/assets/screenshots/5.png new file mode 100644 index 000000000..867579f31 Binary files /dev/null and b/hierarchical_chart_widget/static/description/assets/screenshots/5.png differ diff --git a/hierarchical_chart_widget/static/description/assets/screenshots/6.png b/hierarchical_chart_widget/static/description/assets/screenshots/6.png new file mode 100644 index 000000000..61d172c75 Binary files /dev/null and b/hierarchical_chart_widget/static/description/assets/screenshots/6.png differ diff --git a/hierarchical_chart_widget/static/description/assets/screenshots/7.png b/hierarchical_chart_widget/static/description/assets/screenshots/7.png new file mode 100644 index 000000000..dfb53afc3 Binary files /dev/null and b/hierarchical_chart_widget/static/description/assets/screenshots/7.png differ diff --git a/hierarchical_chart_widget/static/description/assets/screenshots/8.png b/hierarchical_chart_widget/static/description/assets/screenshots/8.png new file mode 100644 index 000000000..4df267fbe Binary files /dev/null and b/hierarchical_chart_widget/static/description/assets/screenshots/8.png differ diff --git a/hierarchical_chart_widget/static/description/assets/screenshots/v16-hero.gif b/hierarchical_chart_widget/static/description/assets/screenshots/v16-hero.gif new file mode 100644 index 000000000..f0a059c98 Binary files /dev/null and b/hierarchical_chart_widget/static/description/assets/screenshots/v16-hero.gif differ diff --git a/hierarchical_chart_widget/static/description/banner.png b/hierarchical_chart_widget/static/description/banner.png new file mode 100644 index 000000000..0c58ab45e Binary files /dev/null and b/hierarchical_chart_widget/static/description/banner.png differ diff --git a/hierarchical_chart_widget/static/description/icon.png b/hierarchical_chart_widget/static/description/icon.png new file mode 100644 index 000000000..d14d45869 Binary files /dev/null and b/hierarchical_chart_widget/static/description/icon.png differ diff --git a/hierarchical_chart_widget/static/description/index.html b/hierarchical_chart_widget/static/description/index.html new file mode 100644 index 000000000..d412f1d03 --- /dev/null +++ b/hierarchical_chart_widget/static/description/index.html @@ -0,0 +1,636 @@ +
+ +
+ +
+
+ Community +
+
+ Enterprise +
+
+ Odoo.sh +
+
+
+ +
+
+
+ +

+ Hierarchical Chart Widget

+

+ Hierarchical display of Parent/Child Model + +

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

+ Explore This + Module

+
+ + + + +
+
+ +
+

+ Overview +

+
+
+
+ This feature allows to view parent/child of the model as a hierarchical chart. + This widget can be used to model which has parent_id and child_ids +
+
+ + + +
+
+ +
+

+ Features +

+
+
+
+
+ + Better and simpler view of the model's child/parents.. +
+
+ + Traverse into Parent node and Child node +
+
+ + Ability to view model's parent/child by their relations in a form of hierarchy chart. +
+ +
+
+ + + +
+
+ +
+

+ Screenshots +

+
+
+
+ +
+

+ When we choose parent for the department, We can see the hierarchical view of the Department. +

+ + +
+ +
+

+ We can navigate through the nodes to reach the respective page. +

+ + +
+
+

+ We can check some other cases where we can use this widget 'org_chart'. +

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

+ Related + Products +

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

+ Our Services +

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

+ Our + Industries +

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

+ Easily procure + and + sell your products

+
+
+ +
+
+ +
+ POS +
+

+ Easy + configuration + and convivial experience

+
+
+ +
+
+ +
+ Education +
+

+ A platform for + educational management

+
+
+ +
+
+ +
+ Manufacturing +
+

+ Plan, track and + schedule your operations

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

+ Mobile + friendly, + awe-inspiring product pages

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

+ Keep track of + services and invoice

+
+
+ +
+
+ +
+ Restaurant +
+

+ Run your bar or + restaurant methodically

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

+ An + all-inclusive + hotel management application

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

+ Support +

+
+
+
+
+
+
+ +
+
+

Need Help?

+

Got questions or need help? + Get in touch.

+ +

+ odoo@cybrosys.com

+
+
+
+
+
+
+
+ +
+
+

WhatsApp

+

Say hi to us on WhatsApp!

+ +

+ +91 86068 + 27707

+
+
+
+
+
+
+
+ +
+
+
+ \ No newline at end of file diff --git a/hierarchical_chart_widget/static/src/js/org_chart.js b/hierarchical_chart_widget/static/src/js/org_chart.js new file mode 100644 index 000000000..ff6620005 --- /dev/null +++ b/hierarchical_chart_widget/static/src/js/org_chart.js @@ -0,0 +1,47 @@ +/** @odoo-module **/ +import { registry } from "@web/core/registry"; +const { Component,onWillStart,useState,onWillUpdateProps} = owl; +import { useService } from "@web/core/utils/hooks"; +export class OrgChart extends Component { + static template = 'CustomerChartWidget' + setup(){ + super.setup(); + this.orm = useService('orm') + var self = this + this.OrgState = useState({ + data: {}, + }); + onWillStart( async() => { + console.log(this.props.record.resModel) + var model = this.props.record.resModel + await this.DepartmentDetails(this.props.record.data.id,model) + }) + onWillUpdateProps(async (nextProps) => { + var model = this.props.record.resModel + await this.DepartmentDetails(nextProps.record.data.id,model); + }); + } + async DepartmentDetails(department_id,model){ + //----fetching the details for template + var self=this + self.OrgState.data = await this.orm.call( + 'hr.department', + 'get_child_dept', + [department_id,model] + ) + } + onChildClick(id,ev){ + //----on clicking the nodes it will be redirected to their page + const action = { + type: 'ir.actions.act_window', + res_model:ev.props.record.resModel, + res_id:id, + domain: [], + views: [ [false, "form"],[false, "list"],], + name: "Schedule Log", + target: 'current', + }; + ev.env.services.action.doAction(action) + } +} +registry.category("fields").add("org_chart", OrgChart); \ No newline at end of file diff --git a/hierarchical_chart_widget/static/src/scss/org_template_style.scss b/hierarchical_chart_widget/static/src/scss/org_template_style.scss new file mode 100644 index 000000000..2d98c0b48 --- /dev/null +++ b/hierarchical_chart_widget/static/src/scss/org_template_style.scss @@ -0,0 +1,47 @@ +/* CSS for Organization Chart */ + +/* Base styles for organization chart container */ +.org-chart { + position: relative; +} + +/* Base styles for organization chart nodes */ +.org-node { + background-color: #f0f0f0; + border: 1px solid #ccc; + border-radius: 5px; + padding: 10px; + margin-bottom: 10px; + width:max-content; +} +h3{ +} + +/* Styles for parent node */ +.parent-node { + background-color: #cce5ff; /* Example color */ + width:max-content; +} + +/* Styles for self node */ +.self-node { + position: absolute; + top: 70px; /* Adjust as needed */ + left: 50%; /* Center horizontally */ + transform: translateX(-50%); /* Center horizontally */ +} + +/* Styles for children nodes */ +.org-children { + position: absolute; + top: 140px; /* Adjust as needed */ + left: 0; + width: 100%; + display: flex; + justify-content: space-around; +} + +/* Styles for child nodes */ +.child-node { + margin-top: px; +} diff --git a/hierarchical_chart_widget/static/src/xml/org_chart_template.xml b/hierarchical_chart_widget/static/src/xml/org_chart_template.xml new file mode 100644 index 000000000..77c6d5002 --- /dev/null +++ b/hierarchical_chart_widget/static/src/xml/org_chart_template.xml @@ -0,0 +1,56 @@ + + + + +
+ + +

HIERARCHY

+
+
+ +
+

+ +

+
+
+
+
+

+ + + +

+
+
+

+ + + +

+
+
+ +
+ +
+

+ +

+
+
+
+
+
+
+
diff --git a/hierarchical_chart_widget/views/hr_department_views.xml b/hierarchical_chart_widget/views/hr_department_views.xml new file mode 100644 index 000000000..a833f0fc1 --- /dev/null +++ b/hierarchical_chart_widget/views/hr_department_views.xml @@ -0,0 +1,31 @@ + + + + hr.department.view.kanban.inherit.hierarchical.chart.widget + hr.department + + + + + + + + + + + + + +
+ +
+
+
+
+
+
+