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
3
votes
2 answers

How can I delete or archive a company in Odoo?

In V11 enterprise, For some models there's an archive function, but not for company. If I have multiple companies but then I have a company that is out of business, how can I disabled or archived this company so that it does not appear in all…
Younis Mahsud
  • 437
  • 5
  • 15
3
votes
1 answer

How can i check that demo data is loaded or not in a database by code

How can i check that demo data is loaded or not in a database from python code.I know other ways to check , but i need to check it by code.
user11572603
3
votes
2 answers

Is there any way to show a variable using decimal precision in Qweb?

I am showing a float variable in a Qweb report: I want to round it with the decimal precision of Product Price. I am rounding it to 4 digits because I…
forvas
  • 9,801
  • 7
  • 62
  • 158
3
votes
1 answer

Why can't I use CDATA in email template body in Odoo 11?

I was trying to create a new email template for invoices. What I did is to copy all the existing email template for invoices (xml id: email_template_edi_invoice) except for the body_html field. And here is the problem: If I fill in the body_html…
forvas
  • 9,801
  • 7
  • 62
  • 158
3
votes
1 answer

Odoo 11 unable to create template DB in SaaS Plans

Hello Readers, I am using Odoo 11 in ubuntu 16.04 trying to install Odoo SaaS tool kit 11 for Odoo v11 CE in my local machine and I am facing an issue when I create template DB in SaaS=> SaaS=> Plans It is showing the Following Exception: …
3
votes
1 answer

Change button's action dynamically

Can a button's action be changed dynamically depending on another field's value? Example code: %(action1)d
Deimoks
  • 728
  • 6
  • 20
3
votes
1 answer

How to register a payment to an invoice in Odoo 11 via XML RPC

I'm using the Odoo External API (in python: odoorpc) to facilitate communication between a customer app (used to place orders) and my Odoo Online instance. I'm currently not able to register a payment using XML RPC. I have successfully created sales…
3
votes
1 answer

How to convert a file to send it throught JSON (To an Odoo controller)

I have a controller that create a new record for a specific model. This model contains a fields.Binary. Here's what the controller looks like: @http.route('/mymodel/create', type='json', method='POST', auth='user') def create_record(self,…
T.Nel
  • 1,540
  • 2
  • 18
  • 34
3
votes
1 answer

How do I change the default database schema in odoo?

By default when I create a new database in odoo, the tables are created in the public schema. Is there a way to change this configuration and that odoo create and use another defined scheme?
Dayana
  • 1,500
  • 1
  • 16
  • 29
3
votes
5 answers

socket.error: [Errno 98] Address already in use

I have this code to connect with server, and this is fileServer.py on server, i have another file py at client but not test yet, i got problem when run this code, please see the information below import socket import threading import os def…
Thai Laoquoc
  • 115
  • 2
  • 2
  • 10
3
votes
2 answers

Odoo Python3 base64 error: TypeError: expected bytes-like object, not Text

I upgraded Odoo v11's python2 to python3. After that I edited my addons. One of my addons, i'm getting error. result = method(recs, *args, **kwargs) File "D:\Odoo 11.0\server\addons\addons-…
3
votes
1 answer

Odoo open new window

I want to create a button in opportunities of CRM in Odoo 11. I want to open a window with all messages of this opportunity (Model mail.message) I tried to create my first addon. Here is my…
Pestana
  • 132
  • 1
  • 10
3
votes
1 answer

Odoo v11: Automatically upgrade all modules mentioned in __manifest.py

I have created a startup project myapp_main for all my Odoo projects. Whenever I install this main project; Odoo installs all depends modules (x, y, z) Here's manifest.py file: # -*- coding: utf-8 -*- { 'name': 'myapp_main', 'version':…
user1
  • 4,031
  • 8
  • 37
  • 66
3
votes
1 answer

How to bulk insert record in Odoo?

Currently, develop some code in c# for insert record into res.partner(Contacts) using Odoo API one by one using loop in c#. But i want to insert all record by single time Odoo API call, is it possible ? Please have a look my existing code foreach…
LGB
  • 75
  • 1
  • 11
3
votes
1 answer

How to connect or login with Odoo using c# code? And after connect with Odoo how to add custom field to Odoo database from c#?

I have to implement some code in c# for login with Odoo database and give the logged user id please have a look, public interface IOpenErpLogin { [XmlRpcMethod("login")] int login(string dbName, string dbUser, string dbPwd); } But, it give…