Questions tagged [odoo-10]

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:

2146 questions
4
votes
2 answers

How to raise a custom exception in Odoo 10?

Can i have a custom title in validation error/warning in odoo,I don't want Odoo in the title. I have tried this code raise odoo.osv.osv.except_osv('title', 'description') But the title gets ignored.
maharshi
  • 586
  • 12
  • 30
4
votes
2 answers

Empty groups in Kanban view of Odoo10

Is it possible to show groups (columns) without any items in Kanban view of Odoo10? I found an article how to do that in Odoo8, but the way that is described there doesn't seem to work anymore.
Aidas Bendoraitis
  • 3,965
  • 1
  • 30
  • 45
4
votes
1 answer

Can I convert an Odoo browse object to JSON

I'm trying to integrate reactjs with Odoo, and successfully created components. Now my problem is that I cant get the JSON via odoo. The odoo programmer has to write special api request to make this happen. This is taking more time and code…
itssajan
  • 820
  • 8
  • 24
3
votes
1 answer

Odoo sorting group by month

In the Account module, there is a group by filter by default. The group by Invoice month filter. When it is used, the invoices are grouped by month.Ascending Invoices month The group is sorted in ascending order. Is there any way to sort it by…
Ryan
  • 51
  • 1
  • 3
3
votes
4 answers

Odoo Manufacturing Picking - Show lots having quantity greater than zero 0

I have added a lot quantity field in Manufacturing picking operations. It is reflecting the lot quantity perfectly with respect to location. Now the problem is I do not want to show the lots having no product i.e. 0 quantity. How do I achieve…
user1584253
  • 975
  • 2
  • 18
  • 55
3
votes
1 answer

Public url is not found (404 -Not found) -Odoo10

I created a public route in Odoo10 with type json and i tried to call it from a API clinet( ARC), i am getting 404 Not found error. I don't know why. Here is my code controller.py # -*- coding: utf-8 -*- from odoo import http,tools from odoo.http…
KbiR
  • 4,047
  • 6
  • 37
  • 103
3
votes
1 answer

How to create records on different model by making onchange method?

Hope you are doing well. I need a little favour from you. I have made a function on Onchange Method. I want,if I onchange the field i.e.final_unique_id, then it create a Model which is in different Module. But It is not working on onchange the…
3
votes
1 answer

How to make a controller on Odoo for custom value?

I need to make a custom controller on Odoo for getting information from the particular task. And I can able to produce the result also. But now I'm facing an issue. The client needs to retrieve the information with a particular field. For…
Pablo Escobar
  • 679
  • 4
  • 20
3
votes
3 answers

Add colurs to statusbar in odoo10

Need to add colour in statusbar in odoo10 which available openerp versions eg: How add colours in statusbar in odoo10 Need different color for different…
Thayif kabir
  • 715
  • 5
  • 20
3
votes
1 answer

Can't restore or backup Odoo Databases

I am getting the following error. I can't backup and cant't restore any database. This will be a huge issue if the database crashes: Database restore error: Postgres subprocess ('/usr/bin/pg_restore', u'--dbname=back', '--no-owner',…
Muhammad Kamran
  • 429
  • 1
  • 7
  • 18
3
votes
1 answer

Migration module from 10 to 12

I'm trying to migrate a module from Odoo 10 to 12 but it shows me this error and I don't understand why: Field 'state' used in attributes must be present in view but is missing Can you please help me to solve this issue: Field 'state' used in…
omas
  • 69
  • 1
  • 12
3
votes
1 answer

Odoo, how to hide an item from many2one field?

Odoo-10 My .py class komMo(models.Model): _name = 'kom.mo' mo_id = fields.Integer(string='Code mo') #this is just the recognition number name = fields.Char(string='Name mo') parent_id = fields.Many2one('kom.mo') I want to hide…
Dejan Dakovic
  • 145
  • 1
  • 11
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
2 answers

Odoo 10 search active and inactive records using search() method

I have many2many field location_from_ids and trying to find all the childs of location_ids. location_from_ids =…
fueggit
  • 859
  • 1
  • 22
  • 44
3
votes
0 answers

Odoo Open Action on button click show breadcrumbs

I am trying to open a client action on a button click. When action opens it does not preserve breadcrumbs from where it is called. Rental Dashboard
Anonymous
  • 33
  • 3