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

Monetary field to report in Odoo 11 without currency id

I try to print invoice lines in invoice report. for and for there is one output: "111.11 $" But I need in…
SkiBY
  • 63
  • 1
  • 7
4
votes
1 answer

How to display different date formats in Odoo datetime fields?

Currently the date format on our Odoo CRM looks like 11/20/2017 13:03:41 but I want to display the format to July 3rd 3:00PM and on another place show as 3 Jul 3:00PM We show this field in the form I have searched a lot…
Basit
  • 16,316
  • 31
  • 93
  • 154
3
votes
1 answer

How to remove " Archive Record " from Kanban view in Odoo

I want to remove the " Archive Record " or " Restore Records " from kanban view settings see the screenshort Select any Group By then Settings button then you will see this three options. Fold, Archive Records,Restore Record . Is there any way to…
Shojib Hasan
  • 176
  • 1
  • 7
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
2 answers

style error while running odoo-11 in ubuntu 18.04

I'm running odoo 11.0 on ubuntu 18.04, when starting the server the website doesn't appear properly and I got this error: Style error The style compilation failed, see the error below. Your recent actions may be the cause, please try reverting the…
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
2 answers

How to override the main create method in odoo11?

I have a lot of models (around 30) that overrides the create method to check for a license state and all of them go like this: class Model1(models.Model): _name='testing_model1' @api.model def create(self) check_license(self) …
David Rios
  • 377
  • 4
  • 9
3
votes
0 answers

Prevent group to create but not inherited groups Odoo

i have 4 groups in attendance model i want to prevent 'base.group_user' to create new records so i add access…
omar ahmed
  • 635
  • 5
  • 19
3
votes
3 answers

odoo.service.server: Failed to load server-wide module `web`

I am getting this error during starting the server after installation of odoo 11. I am using ubuntu 18.04 my config file is like this * [options] ; This is the password that allows database operations: ;admin_passwd = admin db_host =…
Sandip Patel
  • 31
  • 1
  • 2
3
votes
0 answers

Odoo 11 - Missing in website page

I noticed that in some page of my website, implemented with Odoo 11, the is missing. This is probably main cause of an issue linked to the product table in the shop. I checked the "web.layout" view and the code is there:
Filippo Scifo
  • 71
  • 1
  • 11
3
votes
1 answer

Refer to the base module in the test data - Odoo 11

I have a base module called theater with the following model called ticket: # -*- coding: utf-8 -*- from odoo import models, fields, api class ticket(models.Model): _name = 'theater.ticket' _rec_name = 'representation_id' price=…
python38292
  • 69
  • 1
  • 7
3
votes
2 answers

Custom filter in Odoo 11

By default, Odoo comes with a bunch of custom filters that can be configured like 'contains', 'is set', 'is not set'. I want to know how to make a custom filter like it starts with. I am able to read documentation how to add more fields to search…
Lawrence Kok
  • 1,568
  • 11
  • 29
3
votes
1 answer

Why the database manager of my Odoo 11 instance has been disabled?

I have received a compressed Odoo instance as a ZIP file. My purpose was to unzip it and make it work in my computer. I was able to do it with no problem. Now, I have to make that instance work in another server, so I have moved the instance from my…
forvas
  • 9,801
  • 7
  • 62
  • 158
3
votes
1 answer

How to create new attachments in Odoo? How do they work?

I want to create an attachment from python code. So, what I have tried: self.env['ir.attachment'].create({ 'store_fname' : ??, 'checksum' : ?? }) What values should be passed for the column 'store_fname' and 'checksum' in ir_attachment…
Jeremy Gillbert
  • 133
  • 2
  • 10
3
votes
0 answers

Odoo stays in the loading screen after report is generated

When i click on print report, it generates the report correctly with no issues but then the page stays in the loading screen.It keeps on saying 'loading' and won't load until we refresh the browser tab manually. i'm using odoo 11 community…
Anand Mohan
  • 111
  • 10
1 2
3
63 64