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

Trigger Odoo fields_view_get dynamically after all records being loaded and fields_view_get function called

I’d like to trigger the fields_view_get function dynamically after doing some functions. I override the function fields_view_get and return my results. This gets affected on XML view only at first time the actual function called. So I need to…
Hilar AK
  • 1,655
  • 13
  • 25
14
votes
3 answers

How to set Postgres Datetime field into Odoo Datetime field

I am trying to display set time of Postgres database time to datetime field into Odoo. I am creating field is that to set the time. last_modify_article = fields.Datetime("Last Modify Date") But my DateTime :~ 2017-08-28T08:43:56+0200 is perfectly…
Harshit Trivedi
  • 764
  • 9
  • 33
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
12
votes
1 answer

WARNING Error-prone use of @class

> WARNING 11_test1 odoo.addons.base.ir.ir_ui_view: Error-prone use of > @class in view report_invoice_document > (account_invoice_report.report_invoice_document): use the > hasclass(*classes) function to filter elements by their classes Can someone…
Chaban33
  • 1,362
  • 11
  • 38
11
votes
2 answers

Odoo - Hide button for specific user

I am using odoo 10 enterpeise . I want to show buttons to specific users not to groups because there would be many users in a group and i want to only show below button who have the previlige to reject/approve a object. Here is button
Ahsan Attari
  • 987
  • 3
  • 12
  • 26
10
votes
1 answer

How to remove toolbar from website for all users other than Admin in odoo 10

How can I remove the odoo default toolbar for public users? I mean I don't want any user (except for admin) after login to see the top blue bar which has options of discuss, employees etc.. Please refer the following image :
Masood Azhar
  • 283
  • 1
  • 9
10
votes
2 answers

Exception: bus.Bus unavailable - Odoo 10

Currently I have two different databases on different machines that are showing the error below. The first appearence was a couple of months ago, ocasionally showing up in logs, sometimes multiple times in a row and other times only once during a…
Marcio Ribeiro
  • 101
  • 1
  • 3
8
votes
3 answers

explanation of odoo filter domain operator "child_of" and its preference over "in" operator

I am uncertain regarding what child_of does after reading the docs and the use of child_of operator over using in operator for filtering Odoo v10 domain docs can be found here which states the following for child_of is a child (descendant) of a…
nicolauscg
  • 115
  • 1
  • 5
8
votes
2 answers

How to create and then write on a xlsx file

I am new to python and odoo. I came across a scenario that i want to create a excel file first from my dynamic records and then want to save it to ir.attachment table. So that i can link that as an attachment in email. Here is what i tried, but its…
Ancient
  • 3,007
  • 14
  • 55
  • 104
8
votes
3 answers

Why my pdf report is not taking the CSS styles well in Odoo?

I am using Odoo 10 in Ubuntu Server. I am trying to print my quotation report in pdf format using wkhtmltopdf. But the design doesn't look nice. It looks like the CSS is not working I have tried to change some XML file inside mypath/addons but it…
Samoox
  • 176
  • 1
  • 2
  • 9
8
votes
1 answer

Run odoo as service

I have installed odoo 10 on ubuntu 16.04. Now i need to create a service for odoo. I have tried below steps, but getting an error: Starting odoo-server: start-stop-daemon: --start needs --exec or --startas Try 'start-stop-daemon --help' for more…
KbiR
  • 4,047
  • 6
  • 37
  • 103
8
votes
1 answer

Odoo 10 Developer mode and developer mode with assets

I'm new on Odoo v10. I'm using the debug mode with URL. But on the settings menu there is links to activate developer mode. I want to ask, What is the difference between "Activate the developer mode" and "Activate developer mode ( with asset)"?…
ahmetureme
  • 85
  • 1
  • 6
8
votes
6 answers

How can I format date in Odoo 10 QWeb report?

t-field-option is not working. I have tried
user5256523
7
votes
1 answer

Odoo difference in Javascript extend and include

In Odoo one can extend or include on a class (in Javascript). What is the difference in Odoo between extend and include?
7
votes
2 answers

Tree view showing extra empty fields

I have created a custom module, in my tree view, I will always have only 1 row data. But in my tree view it shows extra empty rows. how can I remove those unwanted empty rows? My view code:
Masood Azhar
  • 283
  • 1
  • 9
1
2 3
99 100