diff --git a/hide_menu_user/README.rst b/hide_menu_user/README.rst new file mode 100644 index 0000000..e7c5a1b --- /dev/null +++ b/hide_menu_user/README.rst @@ -0,0 +1,50 @@ +.. image:: https://img.shields.io/badge/license-LGPL--3-blue.svg + :target: https://www.gnu.org/licenses/lgpl-3.0-standalone.html + :alt: License: LGPL-3 + +Hide Any Menu User Wise +======================== +* Hide Any Menu User Wise + +Installation +============ +- www.odoo.com/documentation/17.0/setup/install.html +- Install our custom addon + +Configuration +============= +- Additional configuration not required + +License +------- +Lesser General Public License, Version 3 (LGPL v3). +(https://www.gnu.org/licenses/agpl-3.0-standalone.html) + +Company +------- +* `Cybrosys Techno Solutions `__ + +Credits +------- +* Developer: (V17)Ranjith R , Contact : odoo@cybrosys.com + +Contacts +-------- +* Mail Contact : odoo@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/hide_menu_user/__init__.py b/hide_menu_user/__init__.py new file mode 100644 index 0000000..7b2c59c --- /dev/null +++ b/hide_menu_user/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-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/hide_menu_user/__manifest__.py b/hide_menu_user/__manifest__.py new file mode 100644 index 0000000..690e466 --- /dev/null +++ b/hide_menu_user/__manifest__.py @@ -0,0 +1,42 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-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': 'Hide Any Menu User Wise', + 'version': '17.0.1.0.0', + 'category': 'Extra Tools', + 'summary': 'Hide Menu, Odoo17 Hide Menu, Hide Menu Odoo, Restrict Menu Items, Odoo17 Menu, Odoo17, Odoo Apps', + 'description': 'Hide Any Menu Item User Wise, Hide Menu Items, Hide Menu', + 'author': 'Cybrosys Techno Solutions', + 'company': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'website': "https://www.cybrosys.com", + 'depends': ['base'], + 'data': [ + 'security/security.xml', + 'views/res_users_views.xml', + ], + 'license': 'LGPL-3', + 'images': ['static/description/banner.jpg'], + 'installable': True, + 'auto_install': False, + 'application': False, +} diff --git a/hide_menu_user/doc/RELEASE_NOTES.md b/hide_menu_user/doc/RELEASE_NOTES.md new file mode 100644 index 0000000..37ae023 --- /dev/null +++ b/hide_menu_user/doc/RELEASE_NOTES.md @@ -0,0 +1,10 @@ +## Module + +#### 24.01.2024 +#### Version 17.0.1.0.0 +#### ADD + +- Initial commit for Hide Any Menu User Wise + + + diff --git a/hide_menu_user/models/__init__.py b/hide_menu_user/models/__init__.py new file mode 100644 index 0000000..c957795 --- /dev/null +++ b/hide_menu_user/models/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-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 res_users diff --git a/hide_menu_user/models/res_users.py b/hide_menu_user/models/res_users.py new file mode 100644 index 0000000..112394f --- /dev/null +++ b/hide_menu_user/models/res_users.py @@ -0,0 +1,70 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +from odoo import fields, models + + +class ResUsers(models.Model): + """ + Model to handle hiding specific menu items for certain users. + """ + _inherit = 'res.users' + + def write(self, vals): + """ + Write method for the ResUsers model. + Ensure the menu will not remain hidden after removing it from the list. + """ + res = super(ResUsers, self).write(vals) + for record in self: + for menu in record.hide_menu_ids: + menu.write({ + 'restrict_user_ids': [fields.Command.link(record.id)] + }) + return res + + def _get_is_admin(self): + """ + Compute method to check if the user is an admin. + The Hide specific menu tab will be hidden for the Admin user form. + """ + for rec in self: + rec.is_admin = False + if rec.id == self.env.ref('base.user_admin').id: + rec.is_admin = True + + hide_menu_ids = fields.Many2many( + 'ir.ui.menu', string="Hidden Menu", + store=True, help='Select menu items that need to ' + 'be hidden to this user.') + is_admin = fields.Boolean(compute=_get_is_admin, string="Is Admin", + help='Check if the user is an admin.') + + +class IrUiMenu(models.Model): + """ + Model to restrict the menu for specific users. + """ + _inherit = 'ir.ui.menu' + + restrict_user_ids = fields.Many2many( + 'res.users', string="Restricted Users", + help='Users restricted from accessing this menu.') diff --git a/hide_menu_user/security/security.xml b/hide_menu_user/security/security.xml new file mode 100644 index 0000000..3b2e10c --- /dev/null +++ b/hide_menu_user/security/security.xml @@ -0,0 +1,9 @@ + + + + + Restrict Menu from Users + + [('restrict_user_ids','not in',user.id)] + + diff --git a/hide_menu_user/static/description/assets/icons/capture (1).png b/hide_menu_user/static/description/assets/icons/capture (1).png new file mode 100644 index 0000000..8824dea Binary files /dev/null and b/hide_menu_user/static/description/assets/icons/capture (1).png differ diff --git a/hide_menu_user/static/description/assets/icons/check.png b/hide_menu_user/static/description/assets/icons/check.png new file mode 100644 index 0000000..c8e85f5 Binary files /dev/null and b/hide_menu_user/static/description/assets/icons/check.png differ diff --git a/hide_menu_user/static/description/assets/icons/chevron.png b/hide_menu_user/static/description/assets/icons/chevron.png new file mode 100644 index 0000000..2089293 Binary files /dev/null and b/hide_menu_user/static/description/assets/icons/chevron.png differ diff --git a/hide_menu_user/static/description/assets/icons/cogs.png b/hide_menu_user/static/description/assets/icons/cogs.png new file mode 100644 index 0000000..95d0bad Binary files /dev/null and b/hide_menu_user/static/description/assets/icons/cogs.png differ diff --git a/hide_menu_user/static/description/assets/icons/consultation.png b/hide_menu_user/static/description/assets/icons/consultation.png new file mode 100644 index 0000000..8319d4b Binary files /dev/null and b/hide_menu_user/static/description/assets/icons/consultation.png differ diff --git a/hide_menu_user/static/description/assets/icons/ecom-black.png b/hide_menu_user/static/description/assets/icons/ecom-black.png new file mode 100644 index 0000000..a9385ff Binary files /dev/null and b/hide_menu_user/static/description/assets/icons/ecom-black.png differ diff --git a/hide_menu_user/static/description/assets/icons/education-black.png b/hide_menu_user/static/description/assets/icons/education-black.png new file mode 100644 index 0000000..3eb09b2 Binary files /dev/null and b/hide_menu_user/static/description/assets/icons/education-black.png differ diff --git a/hide_menu_user/static/description/assets/icons/hotel-black.png b/hide_menu_user/static/description/assets/icons/hotel-black.png new file mode 100644 index 0000000..130f613 Binary files /dev/null and b/hide_menu_user/static/description/assets/icons/hotel-black.png differ diff --git a/hide_menu_user/static/description/assets/icons/img.png b/hide_menu_user/static/description/assets/icons/img.png new file mode 100644 index 0000000..70197f4 Binary files /dev/null and b/hide_menu_user/static/description/assets/icons/img.png differ diff --git a/hide_menu_user/static/description/assets/icons/license.png b/hide_menu_user/static/description/assets/icons/license.png new file mode 100644 index 0000000..a586979 Binary files /dev/null and b/hide_menu_user/static/description/assets/icons/license.png differ diff --git a/hide_menu_user/static/description/assets/icons/lifebuoy.png b/hide_menu_user/static/description/assets/icons/lifebuoy.png new file mode 100644 index 0000000..658d56c Binary files /dev/null and b/hide_menu_user/static/description/assets/icons/lifebuoy.png differ diff --git a/hide_menu_user/static/description/assets/icons/manufacturing-black.png b/hide_menu_user/static/description/assets/icons/manufacturing-black.png new file mode 100644 index 0000000..697eb0e Binary files /dev/null and b/hide_menu_user/static/description/assets/icons/manufacturing-black.png differ diff --git a/hide_menu_user/static/description/assets/icons/photo-capture.png b/hide_menu_user/static/description/assets/icons/photo-capture.png new file mode 100644 index 0000000..06c1117 Binary files /dev/null and b/hide_menu_user/static/description/assets/icons/photo-capture.png differ diff --git a/hide_menu_user/static/description/assets/icons/pos-black.png b/hide_menu_user/static/description/assets/icons/pos-black.png new file mode 100644 index 0000000..97c0f90 Binary files /dev/null and b/hide_menu_user/static/description/assets/icons/pos-black.png differ diff --git a/hide_menu_user/static/description/assets/icons/puzzle.png b/hide_menu_user/static/description/assets/icons/puzzle.png new file mode 100644 index 0000000..65cf854 Binary files /dev/null and b/hide_menu_user/static/description/assets/icons/puzzle.png differ diff --git a/hide_menu_user/static/description/assets/icons/restaurant-black.png b/hide_menu_user/static/description/assets/icons/restaurant-black.png new file mode 100644 index 0000000..4a35eb9 Binary files /dev/null and b/hide_menu_user/static/description/assets/icons/restaurant-black.png differ diff --git a/hide_menu_user/static/description/assets/icons/service-black.png b/hide_menu_user/static/description/assets/icons/service-black.png new file mode 100644 index 0000000..301ab51 Binary files /dev/null and b/hide_menu_user/static/description/assets/icons/service-black.png differ diff --git a/hide_menu_user/static/description/assets/icons/trading-black.png b/hide_menu_user/static/description/assets/icons/trading-black.png new file mode 100644 index 0000000..9398ba2 Binary files /dev/null and b/hide_menu_user/static/description/assets/icons/trading-black.png differ diff --git a/hide_menu_user/static/description/assets/icons/training.png b/hide_menu_user/static/description/assets/icons/training.png new file mode 100644 index 0000000..884ca02 Binary files /dev/null and b/hide_menu_user/static/description/assets/icons/training.png differ diff --git a/hide_menu_user/static/description/assets/icons/update.png b/hide_menu_user/static/description/assets/icons/update.png new file mode 100644 index 0000000..ecbc5a0 Binary files /dev/null and b/hide_menu_user/static/description/assets/icons/update.png differ diff --git a/hide_menu_user/static/description/assets/icons/user.png b/hide_menu_user/static/description/assets/icons/user.png new file mode 100644 index 0000000..6ffb23d Binary files /dev/null and b/hide_menu_user/static/description/assets/icons/user.png differ diff --git a/hide_menu_user/static/description/assets/icons/wrench.png b/hide_menu_user/static/description/assets/icons/wrench.png new file mode 100644 index 0000000..6c04dea Binary files /dev/null and b/hide_menu_user/static/description/assets/icons/wrench.png differ diff --git a/hide_menu_user/static/description/assets/misc/Cybrosys R.png b/hide_menu_user/static/description/assets/misc/Cybrosys R.png new file mode 100644 index 0000000..da40580 Binary files /dev/null and b/hide_menu_user/static/description/assets/misc/Cybrosys R.png differ diff --git a/hide_menu_user/static/description/assets/misc/email.svg b/hide_menu_user/static/description/assets/misc/email.svg new file mode 100644 index 0000000..15291cd --- /dev/null +++ b/hide_menu_user/static/description/assets/misc/email.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/hide_menu_user/static/description/assets/misc/phone.svg b/hide_menu_user/static/description/assets/misc/phone.svg new file mode 100644 index 0000000..b7bd7f2 --- /dev/null +++ b/hide_menu_user/static/description/assets/misc/phone.svg @@ -0,0 +1,3 @@ + + + diff --git a/hide_menu_user/static/description/assets/misc/star (1) 2.svg b/hide_menu_user/static/description/assets/misc/star (1) 2.svg new file mode 100644 index 0000000..5ae9f50 --- /dev/null +++ b/hide_menu_user/static/description/assets/misc/star (1) 2.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/hide_menu_user/static/description/assets/misc/support (1) 1.svg b/hide_menu_user/static/description/assets/misc/support (1) 1.svg new file mode 100644 index 0000000..7d37a8f --- /dev/null +++ b/hide_menu_user/static/description/assets/misc/support (1) 1.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/hide_menu_user/static/description/assets/misc/support-email.svg b/hide_menu_user/static/description/assets/misc/support-email.svg new file mode 100644 index 0000000..eb70370 --- /dev/null +++ b/hide_menu_user/static/description/assets/misc/support-email.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/hide_menu_user/static/description/assets/misc/tick-mark.svg b/hide_menu_user/static/description/assets/misc/tick-mark.svg new file mode 100644 index 0000000..2dbb401 --- /dev/null +++ b/hide_menu_user/static/description/assets/misc/tick-mark.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/hide_menu_user/static/description/assets/misc/whatsapp 1.svg b/hide_menu_user/static/description/assets/misc/whatsapp 1.svg new file mode 100644 index 0000000..0bfaf8f --- /dev/null +++ b/hide_menu_user/static/description/assets/misc/whatsapp 1.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/hide_menu_user/static/description/assets/misc/whatsapp.svg b/hide_menu_user/static/description/assets/misc/whatsapp.svg new file mode 100644 index 0000000..b618aea --- /dev/null +++ b/hide_menu_user/static/description/assets/misc/whatsapp.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/hide_menu_user/static/description/assets/modules/m1.png b/hide_menu_user/static/description/assets/modules/m1.png new file mode 100644 index 0000000..acb4c76 Binary files /dev/null and b/hide_menu_user/static/description/assets/modules/m1.png differ diff --git a/hide_menu_user/static/description/assets/modules/m2.png b/hide_menu_user/static/description/assets/modules/m2.png new file mode 100644 index 0000000..3ef91f7 Binary files /dev/null and b/hide_menu_user/static/description/assets/modules/m2.png differ diff --git a/hide_menu_user/static/description/assets/modules/m3.png b/hide_menu_user/static/description/assets/modules/m3.png new file mode 100644 index 0000000..72febf6 Binary files /dev/null and b/hide_menu_user/static/description/assets/modules/m3.png differ diff --git a/hide_menu_user/static/description/assets/modules/m4.png b/hide_menu_user/static/description/assets/modules/m4.png new file mode 100644 index 0000000..f7d7f92 Binary files /dev/null and b/hide_menu_user/static/description/assets/modules/m4.png differ diff --git a/hide_menu_user/static/description/assets/modules/m5.png b/hide_menu_user/static/description/assets/modules/m5.png new file mode 100644 index 0000000..1d3324e Binary files /dev/null and b/hide_menu_user/static/description/assets/modules/m5.png differ diff --git a/hide_menu_user/static/description/assets/modules/m6.png b/hide_menu_user/static/description/assets/modules/m6.png new file mode 100644 index 0000000..80938c1 Binary files /dev/null and b/hide_menu_user/static/description/assets/modules/m6.png differ diff --git a/hide_menu_user/static/description/assets/screenshots/hero.gif b/hide_menu_user/static/description/assets/screenshots/hero.gif new file mode 100644 index 0000000..2cef186 Binary files /dev/null and b/hide_menu_user/static/description/assets/screenshots/hero.gif differ diff --git a/hide_menu_user/static/description/assets/screenshots/screenshot-1.png b/hide_menu_user/static/description/assets/screenshots/screenshot-1.png new file mode 100644 index 0000000..dbe52a0 Binary files /dev/null and b/hide_menu_user/static/description/assets/screenshots/screenshot-1.png differ diff --git a/hide_menu_user/static/description/assets/screenshots/screenshot-2.png b/hide_menu_user/static/description/assets/screenshots/screenshot-2.png new file mode 100644 index 0000000..184f33b Binary files /dev/null and b/hide_menu_user/static/description/assets/screenshots/screenshot-2.png differ diff --git a/hide_menu_user/static/description/assets/screenshots/screenshot-3.png b/hide_menu_user/static/description/assets/screenshots/screenshot-3.png new file mode 100644 index 0000000..d6282cd Binary files /dev/null and b/hide_menu_user/static/description/assets/screenshots/screenshot-3.png differ diff --git a/hide_menu_user/static/description/assets/screenshots/screenshot-4.png b/hide_menu_user/static/description/assets/screenshots/screenshot-4.png new file mode 100644 index 0000000..9863087 Binary files /dev/null and b/hide_menu_user/static/description/assets/screenshots/screenshot-4.png differ diff --git a/hide_menu_user/static/description/banner.jpg b/hide_menu_user/static/description/banner.jpg new file mode 100644 index 0000000..d05b174 Binary files /dev/null and b/hide_menu_user/static/description/banner.jpg differ diff --git a/hide_menu_user/static/description/icon.png b/hide_menu_user/static/description/icon.png new file mode 100644 index 0000000..a9dab3f Binary files /dev/null and b/hide_menu_user/static/description/icon.png differ diff --git a/hide_menu_user/static/description/index.html b/hide_menu_user/static/description/index.html new file mode 100644 index 0000000..44a6a8d --- /dev/null +++ b/hide_menu_user/static/description/index.html @@ -0,0 +1,692 @@ + + + + + + + Odoo App 3 Index + + + + + + + + +
+
+
+
+
+ +
+
+
+ Community +
+
+ Enterprise +
+
+ Odoo.sh +
+
+
+
+
+
+

+ Hide Any Menu User Wise

+

+ Hide any Menu items user wise. +

+
+ +
+
+
+
+
+

+ Key Highlights +

+
+
+
+
+
+ +
+
+

+ Available in Odoo 17.0 Community and + Enterprise.

+
+
+
+
+
+
+ +
+
+

+ Easily hide any menu/submenu items + user-wise.

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

+ Before adding the hide menu option you can + see the Specific Menu.

+
+
+
+
+
+
+ +
+
+

+ Go to Settings > Users and there you can see + the 'Hide Specific + Menu' tab where you can + select any Menu/Submenu that needs to be + hidden to the selected + user.

+
+
+
+
+
+
+ +
+
+

+ Click on 'Add a line' and select the menus + that needs to be + hidden for this user.

+
+
+
+
+
+
+ +
+
+

+ As you can see the menus and corresponding + views are now hidden + for the user.

+
+
+
+
+
+
+
    +
  • + Easily hide any + menu/submenu items user-wise. +
  • +
  • + Available in + Odoo 17.0 Community and Enterprise +
  • +
+
+
+
+
+
+
Version + 17.0.1.0.0|Released on:24th Jan 2024 +
+

+ Initial Commit for Hide Any Menu User Wise

+
+
+
+
+
+
+
+

+ Related Products

+
+
+ +
+
+

+ Our Services

+ +
+
+
+
+
+
+
+
+ service-icon +
+
+

Odoo + Customization

+
+
+
+
+
+
+ service-icon +
+
+

Odoo + Implementation

+
+
+
+
+
+
+ service-icon +
+
+

Odoo + Support

+
+
+
+
+
+
+ service-icon +
+
+

Hire + Odoo Developer

+
+
+
+
+ +
+
+ service-icon +
+
+

Odoo + Integration

+
+
+
+
+
+
+ service-icon +
+
+

Odoo + Migration

+
+
+
+
+
+
+ service-icon +
+
+

Odoo + Consultancy

+
+
+
+
+
+
+ service-icon +
+
+

Odoo + Implementation

+
+
+
+
+
+
+ service-icon +
+
+

Odoo + Licensing Consultancy

+
+
+
+
+
+
+

+ Our Industries

+ +
+
+
+
+
+
+ +

Trading

+

Easily procure and sell your products

+
+
+
+
+ +

POS

+

Easy configuration and convivial experience

+
+
+
+
+ +

+ Education

+

A platform for educational management

+
+
+
+
+ +

+ Manufacturing

+

Plan, track and schedule your operations

+
+
+
+
+ +

E-commerce & + Website

+

Mobile friendly, awe-inspiring product pages

+
+
+
+
+ +

Service + Management

+

Keep track of services and invoice

+
+
+
+
+ +

+ Restaurant

+

Run your bar or restaurant methodically

+
+
+
+
+ +

Hotel + Management

+

An all-inclusive hotel management application

+
+
+
+
+
+
+

+ Support

+
+
+
+
+
+
+
+ +
+ Need + Help? +

Got + questions or need help? Get in touch.

+
odoo@cybrosys.com +
+
+
+
+
+
+
+
+ +
+ WhatsApp +

Say hi to + us on WhatsApp!

+
+91 + 99456767686 +
+
+
+
+
+
+
+
+
+ + + + + + diff --git a/hide_menu_user/views/res_users_views.xml b/hide_menu_user/views/res_users_views.xml new file mode 100644 index 0000000..2e3abe1 --- /dev/null +++ b/hide_menu_user/views/res_users_views.xml @@ -0,0 +1,36 @@ + + + + + res.users.view.form.inherit.hide.menu.user + res.users + + + + + + + + + + + + + + + + + ir.ui.menu.view.form.inherit.hide.menu.user + ir.ui.menu + + + + + + + + + + + + \ No newline at end of file