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
14
votes
1 answer

Odoo10/Odoo11 dynamic progressbar - trigger javascript function inside python

My task: a dynamic progress bar in odoo. I'm using the Odoo widget: 'progressbar'. I want to update the view every time the value is updated - hence I want to trigger the on_change_input javascript function inside my python write method to render…
IstaLibera
  • 580
  • 5
  • 22
8
votes
3 answers

Can not override "name" attribute on menu view in Odoo 11?

I'm new to Odoo. I would like to change the top most menu name (with no action) from Employee to My new string. My new string
user123
  • 577
  • 5
  • 23
6
votes
1 answer

Odoo Session Expired Randomly

i keep getting the message ''Odoo Session Expired'' randomly. I have no idea why. I restarted my local instance/server but this didn't solve the problem.
Hamza Ali
  • 380
  • 5
  • 21
5
votes
2 answers

How to modify the duplicate form in the database manager?

I want to add some other field to this form that can be accessed from the Database Manager in Odoo The data is sent to this controller: @http.route('/web/database/duplicate', type='http', auth="none", methods=['POST'], csrf=False) def…
ChesuCR
  • 9,352
  • 5
  • 51
  • 114
5
votes
1 answer

Many2one res.partner Filter in CRM module

I am trying to apply a group by on customers in the opportunities section of the CRM module. I want to group the customers/opportunities on industry. I have used similar code in res.partner and I cannot work this one out!. models.py x_industry_id =…
johnashu
  • 2,167
  • 4
  • 19
  • 44
5
votes
2 answers

How to connect to Odoo database from an android application

I am developping an Android application, and I'd like to retrieve data from an Odoo server. For that I developped a custom module in Odoo, in which I created a controller. My controller : import json import xmlrpc.client as xmlrpclib from odoo…
T.Nel
  • 1,540
  • 2
  • 18
  • 34
5
votes
1 answer

Object of type "datetime.date" has no len ()" in python

I have this code like this in odoo 11 @api.multi def report_team(self): teambao = self.env['hr.department'].search([]) tongteam = len(teambao) i = 0 while i < tongteam: if teambao[i].id: now = datetime.now() …
Thai Laoquoc
  • 115
  • 2
  • 2
  • 10
5
votes
2 answers

Mocking in Odoo environment?

Does anyone know how can you write mock tests for Odoo objects? I have these classes and methods: my_module: from odoo import models class MyModel(models.Model): _name = 'my.model' def action_copy(self): IrTranslation =…
Andrius
  • 19,658
  • 37
  • 143
  • 243
5
votes
4 answers

Odoo: Export res.company object to JSON

company = self.env['res.company'].search([('id', '=', 1)]) print company.name # prints 'my company' which is correct print json.dumps(company) # error TypeError: res.company(1,) is not JSON serializable Question is how do simply export company…
user1
  • 4,031
  • 8
  • 37
  • 66
5
votes
0 answers

Odoo - no process is listening on long polling port + possible solution

Have started a new Odoo server on Ubuntu Linux. Used a script by Yenthe Van Ginekken (probably the most popular one): sudo wget https://raw.githubusercontent.com/Yenthe666/InstallScript/11.0/odoo_install.sh No fancy modules. After installing SSL…
Piotr Cierkosz
  • 322
  • 1
  • 11
5
votes
1 answer

Difference between write and update in odoo11

What is the difference between write and update method in odoo11 because when i use write it work first time only then it not work.
user_123
  • 426
  • 7
  • 23
5
votes
5 answers

How to develop (run and debug) modules in Odoo v11 on Visual Studio Code in Ubuntu?

Is it possible to run and debug Odoo on Visual Studio Code? If yes please share me the configuration. Visual Studio Code is a source code editor developed by Microsoft for Windows, Linux and macOS. It includes support for debugging, embedded Git…
Binyam Assefa
  • 97
  • 1
  • 1
  • 10
5
votes
2 answers

How to call python function in jquery in odoo 11

Python code: @api.model def test_method(self): a= 10 b = 20 c = a+b return c jQuery: var Model = require('web.Model'); $(document).ready(function() { var test_model = new Model("MyClass"); …
anand raj
  • 227
  • 3
  • 13
5
votes
2 answers

How to activate the developer mode in Odoo?

I've installed Odoo version 10 module but I didn't see the activate developer mode under About section.
Bhavesh Odedra
  • 10,990
  • 12
  • 33
  • 58
5
votes
1 answer

How can I remove the "Search more... " option from a many to many field?

If I show the many2many field with the widget many2many_tags the option "Search more..." appears in the drop-down menu. How can I avoid it?
Charif DZ
  • 14,415
  • 3
  • 21
  • 40
1
2 3
63 64