How To Remove "Messaging And Reporting " from Openerp Menu? - openerp-7

I had install Accounting and Finance, but there are two more options as Messaging and Reporting which I don't want in Menu. Is there any way to remove it from Menu ?

Override this menu item and assign group (create new group) which has no access to any user then it will hide from all users.
<menuitem name="Messaging" id="mail.mail_feeds_main" groups="base.group_user" sequence="10"/>
The same thing for reporting menu item.
I hope this helps.

Related

Odoo: add custom menu item in Settings section

Odoo v10.0
Is it possible to add custom menu item on left sidebar in top-level "Settings" section?
For example here, in "Settings" section in navbar I have "Dashboard", "Users" and others. I have my custom module (addon) that's installed in system. I want to control some settings of my addon from UI as admin.
Ideally, such as UI should be in "Settings -> on left-side bar MyAddon -> and its sub-items". Otherwise, it should be in top-level navbar as the separate section.
Please advise where I can see (link to code) such as example.
Thanks
CC #Emipro Technologies Pvt. Ltd
if you want to put your menu under Settings -> Users
use parent id of any menu to put your menu under that menu.
<menuitem id="your_ui_menu_id" name="UI" parent="base.menu_administration" />

openerp 7.0: How to hide submenus from Settings?

I don't want the HR Guys to see anything but the submenu Users within the main menu settings.
Therefor I removed "500 - Settings" in the group "Administration / Access Rights" and added "4 - Settings / Users".
It seems that I misunderstood something, because the tap "Settings" disappears completely.
Could anybody give me a hand with this? Do i need to add some user rights? Is there even a possibility to do that via Groups and Menu Items?
Greetings,
Martin
create a new group, specify this group to the settings menu and users menu along with their default groups.Then provide this group to your "HR Guys"
Ok,
The way to "hidde" the other menus is to seperate the users menu from the settings as technical user in Settings -> User Interface -> Menu Items.
Afterwards connect the new users main menu with the groups which need accses to the users menu.
Important: dont forget to give the access rights so they can manipulate data
Greetings
Martin

New menu item not showing up

I'm using OpenERP 7.0, and I've extended products with a products_available_at table, and I've added a menu option Locations under Sales - Configuration - Products. The menu item shows up just fine if I'm logged in as admin, but is missing for anybody else.
Any ideas how to make the menu item show up for everyone?
It will be a security issue. Please check whether you have provided security for the new model and also for the menu.
Settings -> Technical -> Security -> [Record Rules | Access Controls List]

Sugar CRM - How to add Custom Module to Navigation Bar shortcut?

I created a new custom module Customer.
It is currently shown as a shortcut in ALL sections on the main page.
I want users to be able to select Customer when they mouse over the Sales shortcut (to show Customer next to Accounts, Contacts, Opportunities).
How do I add it?
Thank you
You can add modules to different menu groups from the page Administration > Configure Module Menu Filters. It will be in the section Developer Tools on the Administration page.

Disabling unwanted menus in OpenERP

I am new to OpenERP. I need to disable some menus without uninstalling the modules that added the menus. I tried did a search for the module I wanted to disable its menu and then deleted all the search results only to get a very disorganized menu as a result. Please how do I achieve this? I just need to hide the link to two modules on the menu bar and on the home page
Create a new security group called 'Nobody' with no users in it.
Change the permission of the menus you want to hide to this group.
This is easy and you can get the menu back easily too if you change your mind.
If you delete a parent menu, then all its children appear at the top level. You can either delete all the children as well, or just remove security access from the parent menus for all but the administrator group. You might also be able to inactivate the parent menu instead of deleting it if you don't want to mess around with security.
check the below link.In this link is example of hide the UOM into the Product.
if We don’t want to display Unit Of Measure in Product Configuration.
http://pilgrimonerp.wordpress.com/2010/08/25/openerp-hide-menu-item/
Easiest way is to edit the group:
Settings > Users > Groups, select a group, select second tab (Security), add/remove menu items on Access Menu.
To disable menus it right to go with ir.menu model.
Setting -> technical -> views -> menu
or
some easy example
http://snippetbucket.com/2014/02/openerp-disable-apps-menu-remove-openerp-app/