how can I view the installed openerp modules - odoo

Hi I am using openerp 7 on my XP . I have created a custom openerp module . It was shown in openerp and I installed it successfully but now I dont know where it has been installed. I also cannot view other installed openerp modules . I wanted to see the installed modules . How to view them?
Hopes for suggestion

When you said you installed the module, what all you have done? Here are some steps to follow.
Create the module (detail on how to create a module is out of scope)
copy the module folder in to the addons folder
Login in as admin
you probably want to see technical details as admin. So, go to "Settings / Users / Users". Open the admin record and edit it. And on access rights tab enable "Technical features". Save the form and reload the page.
If the DB is created before the modules folder was copied in to addons, go to "Settings / Modules / Update module list" and Update the module list.
Go to "Settings / Modules / Installed module" remove the "installed" filter from search box and search for your module name.
Once found the module, click the install button.
from "Settings / Modules / Installed module" find and open the module in form view. Under the "Technical Data" tab, you will see the views added by the module. Under "Features tab" you will all the menus and report created by the module.

Related

How I can add new module to odoo 15

I am new to Odoo and I need to know what is the basic steps of adding a new module.
More specifically I need to know how to add custom modules to the addons-path.
In Odoo document they explain this step as this
$ ./odoo-bin --addons-path=../custom,../enterprise/,addons
but did not work for me.
For adding a new module you should do these steps:
Build your module with your written code or scaffold command.
Add the module path in your config file at addons-path = '',''
Change your URL like this: http://localhost:8091/web?debug=1
Go to apps and from up tabs
Select update app list and refresh your page.
Now you can see your module in the apps.
If you are not getting your custom module in Odoo after adding the path then you can try to add the full path of your folder into addons-path.
To get the full path of your custom folder just right-click on the folder and go to properties and find the path of your folder.
Also, you have to make sure to Apply the Update App list in your Odoo App Dashboard after restarting the server with custom addons.

How can I install apps/modules in odoo v9

I have started using odoo and I would like to install some modules like Custom Invoice template, Pls recommend some docs or steps to install new modules.
Activate the developer mode by doing to About page (by clicking the user profile picture).
Go to settings choose "Users" from the menu Click the current user, and edit it by checking "Technical features"
Refresh the page
Unpacked the module at ../server/openerp/addons
Go to modules under settings and Click the "Update module list" menu item.
The app should display under local modules, so find your new module in Settings > Modules > Local Modules and click on the install button.
I am just posting the best steps:
create a separate folder custom_addons and place it inside the located folder of odoo in parallel with addons folder like
/opt/odoo/custom_addons ,
Now your odoo directory have two module source /opt/odoo/addons and /opt/odoo/custom_addons.
It's time to include this newly create folder in the addons path of odoo server .
Open your odoo server config :nano /etc/odoo-server.conf
append the newly create addons in addons_path like:
addons_path = /opt/odoo/custom_addons,/opt/odoo/addons
save the file and restart your odoo server .
Now place your new modules [create/purchased] in side the
custom_addons then update module list and search the name of module and install it.

DNN Content slider module not working

I am using DNN 8 and i need slider for the home page. I have did extensive search about this on internet and i found Content Slider module.
I have added this module in the page and when i add content slider module a message appears in the pane like below
No content sliders have been created yet. Please use the Actions Menu
to create a slider.
So i used action menu to add slider, when i click Add Slider option from the action menu i get the error like below image.
Click image to see error
Not understanding what to do. So please any help me to solve this error.
This is a bug related to DNN8 deprecating support for older controls. If the module is open source you should download the source code and add references to DNN8 so that you can recompile it to get the proper references.
Steps:
Setup your development environment (link)
Download Source Code (_source) version of the module
Install _Source package via the Host/Extensions page (link)
Open the CSProj file in Visual Studio 2015
Remove reference to DotNetNuke.Web
Add reference to DotNetNuke.Web.Deprecated (found in the website's BIN folder)
Compile in Release mode to package (assuming the module supports my BUILDSCRIPTS)
Install the created _INSTALL file to your production DNN site
If the module doesn't use my BUILDSCRIPTS just compile and copy the DLL generated to your production website BIN folder
Chris

Webmin Navigation Menu

I'm being a complete dullard and cannot for the life of me remember how to add a module to the navigation menu within webmin!
At the minute in the navigation menu under the Servers tab I only have 4 servers listed two of which i don't use.
All I want to do is add another module that is already installed to the list and remove the ones I do not use.
Try Webmin > Webmin Configuration > Reassign Modules
This allows you to choose which module appears in which section of the admin bar. It doesn't actually install or remove anything, just changes how it is shown.
If you want to actually install or delete modules (not normally necessary) then you want Webmin > Webmin Configuration > Webmin Modules

Standard modules not found after installing on odoo 8

I'm currently trying to install a module (service level agreement module) on Odoo 8. I downloaded the zip, copied it over to the addon directory specified in the configuration file, and then restarted the server. To ensure it restarted I killed the old process, check that it was dead, and then started it up again.
I attempted to search for the module (searched for Service), and it was not found.
Am I missing something?
Thanks.
They appear after you update Module List but you need the "Technical Features" permission. You even have to set it for your admin user like this.
To activate the technical features, you have to add access rights to your user. You must edit your current user from the menu Settings > Users. Edit your user (probably admin) and, in the Access Rights tab, check the option Technical Features.
Did you update your list of modules ? (Settings / Modules / Update Module List).
You need the 'Technical Features' rights to do that.