Questions tagged [odoo-11]

Odoo is a suite of open-source business apps written in Python and released under the LGPL license since version 9 (previously AGPL). It is used by 2 million users worldwide to manage companies of all different sizes. The main Odoo components are the server, 260 core modules (also called official modules) and around 4000 community modules.

                     Odoo was formerly known as OpenERP

enter image description here

Odoo was known as OpenERP until May 2014. It was rebranded because version 8 of the software included apps such as a website builder, e-commerce, point of sale and business intelligence. The software conforms to standard expectations of ERP systems, while providing additional modules beyond the coverage of traditional ERP systems.

Odoo S.A. provides a web site referencing the officially supported modules as well as community modules. Community modules can be referenced for free as long as they respect the open source licence of Odoo. As of June 2014, the number of Odoo apps reached more than 4000.

Module development mainly relies around editing and files. Some application logic (i.e. workflows and data structure) can be changed through the client interface using a developer mode.

The official Odoo apps are organized in 6 groups:

  • Front-end apps: website builder, blog, e-commerce
  • Sales management apps: CRM, point of sales, quotation builder
  • Business operations apps: project management, inventory, manufacturing, accounting and purchase
  • Marketing apps: mass mailing, lead automation, events, survey, forum, live chat
  • Human Resources apps: employee directory, enterprise social network, leaves management, timesheet, fleet management
  • Productivity apps: business intelligence, instant messaging, notes

The software is actively programmed, supported, and organized by Odoo S.A.. Odoo is similar to many open source projects where customized programming, support, and other services are also provided by an active global community and a network of 500 official partners.

Internal Links:

947 questions
2
votes
0 answers

Odoo 11 tree (advanced view) to be not open

I just starting to using odoo 11. i'm using tree, for displaying data of one2many field.
2
votes
1 answer

How to use RPC query in JavaScript with search method in Odoo 11 / 12?

I have following code: odoo.define('module_name.templates', function(require){ "use strict"; $(document).ready(function() { var rpc = require('web.rpc'); $('#query').click(getProductBySKU); function getProductBySKU(){ var…
wasd
  • 1,532
  • 3
  • 28
  • 40
2
votes
1 answer

Print values of field variables declared inside html content Odoo11?

I have created html field in the form view. Then user will add content in that field. The content will have some field variables of form view same as we declare in email template. Then user will print pdf report and that report should display values…
Boubaker
  • 427
  • 1
  • 7
  • 24
2
votes
3 answers

How to add my custom menu to the portal users menu list?

I have a menu named Portal Form. I want that menu to be visible for users with Portal group. So far I have created users and assigned portal them Portal group. I have also added access rights of my model for the portal group. Everything as suggested…
Megha Sirisilla
  • 151
  • 2
  • 12
2
votes
2 answers

specify parameters in odoo module

I'm using odoo 11, and I'm trying to create a module. I added web_google_maps to the depends tag in my __manifest__.py, but I'm supposed to specify some parameters, such as: google_maps_view_api_key, google_maps_lang_localization,…
Jaime Roman
  • 749
  • 1
  • 11
  • 26
2
votes
0 answers

How to manage a different display name for two Many2one pointing to the same model in Odoo 11?

I am going to put a simple example: I have two Many2one fields, dog_name, dog_alias, both of them pointing to the dog model. This model has the Char fields name and alias. When I open the dropdown of dog_name, I should see the name of the dogs,…
forvas
  • 9,801
  • 7
  • 62
  • 158
2
votes
2 answers

How to use an environment variable in the odoo.conf

I am trying to use an environment variable in the odoo.conf file to specify the path where the logs are stored. So far I have tried: logfile = ${test.rueda}/odoo.log But it does not work. Is there any way to achieve this?
Dayana
  • 1,500
  • 1
  • 16
  • 29
2
votes
1 answer

Odoo 11 Qweb Report empty page

I am trying to create a qweb report for Odoo 11 but without any success. 0 byte pdf I am getting, I edit the report to qweb-html and then only white page. Please help me to solve the issue. Below is my code. I am a beginner and trying to create this…
Faheem
  • 29
  • 2
  • 7
2
votes
1 answer

How to integrate Odoo Database with Laravel?

I am working a project where entire application is developed using Laravel 5.5 (postgres). Now, our client came up with a requirement for having ERP and they opted to use ODOO 11 with very minimal customizations. So , my concern is with database…
gubera
  • 92
  • 3
  • 9
2
votes
1 answer

Inherit specific fields from res.partner Odoo v11

Hi i've got a field which contains contact information so i used the inheritence so i can get only name, adress, email, phone num but i'm getting all the view showed with all the existing fields. The xml code:
Aab Crow
  • 23
  • 4
2
votes
0 answers

How to modify model in odoo, such that modifications can be discarded?

Normally when editing a model in Odoo, one can click the Discard button to revert all changes. Now I have a button that performs some modifications on the model, for example it clears a field. Sadly this change is not reverted when clicking Discard.…
mihca
  • 997
  • 1
  • 10
  • 29
2
votes
2 answers

How to get Sysdate in qweb/odoo 11?

How to reference Sysdate in qweb in odoo 11? I need to compare a date with "sysdate" in qweb, but I'm not able to get the current date.
Filippo Scifo
  • 71
  • 1
  • 11
2
votes
0 answers

How to Play Sound in Odoo with Single Device Running

I have designed a method when product not found in using barcode scanning I put this code in that product not found. @api.multi def _product_sound(self) PyAudio = pyaudio.PyAudio bitrate = 8000 frq = 500 LENGTH = 2 if frq >…
Harshit Trivedi
  • 764
  • 9
  • 33
2
votes
3 answers

How to organize many2many checkboxes in lines (rows) rather than columns?

I am creating one module where I have a Many2many field and I would like to convert it into a checkbox group. I have written this in my XML view to achieving it But the field is shown all…
Harshit Trivedi
  • 764
  • 9
  • 33
2
votes
2 answers

How to call python function in odoo11 js file?

How to call the python function from js file. I used the following code but i didn't work. Here, i want to show message in js file which is define in .py file. .py file from odoo import models, fields, api class message_of_the_day(models.Model): …
user_123
  • 426
  • 7
  • 23