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
5
votes
4 answers

Odoo 10 - Qweb t-if t-else syntax

I do not know which is the right syntax for if-else in qweb. foo bar What is wrong here?
M.E.
  • 4,955
  • 4
  • 49
  • 128
5
votes
3 answers

How to check if a module is installed or a model is existed in odoo

I want to inherit a form from another custom module without depends but It need to be check if that module is installed or model is existed before inherit it. I researched many docs but not found any solution regards so pls help me how can I do this…
Phong Vy
  • 369
  • 5
  • 19
5
votes
0 answers

Is it possible to make a transaction in Odoo v10? If yes, How to do it?

Well, I have many operations inside my function. there is a loop which has a self.create() function inside, and inside it there is still another loop containing another create function and so on... BUT they depends on each other with their ID. Here…
5
votes
1 answer

Pass data to email template from python code Odoo 10

I need to pass objects to email_template from python code: *.py def _alert_product_expiry(self): alert_data = self.search([('alert_date','=',fields.Date.today())]) if alert_data: template_id = self.env.ref('alert_email_template')//…
KbiR
  • 4,047
  • 6
  • 37
  • 103
5
votes
1 answer

Odoo `--test-enable` doesn't work

I'm following Odoo 10 Development Essentials Chapter 2 to develop a simple todo addon. I'm using odoo's docker as my environment. You can check all my source code (including dockers') at https://github.com/spacegoing/docker_odoo The problem is I set…
spacegoing
  • 5,056
  • 5
  • 25
  • 42
5
votes
1 answer

Why are my tests not running on Odoo 10?

I created a simple to-do application with the following structure: todo_app ├── __init__.py ├── __manifest__.py ├── tests │   ├── __init__.py │   └── tests_todo.py └── todo_model.py Under the tests folder I…
César
  • 9,939
  • 6
  • 53
  • 74
5
votes
2 answers

How to connect Odoo with postgres (which is running on other server)

I want to connect odoo 10 with the postgresql (which is running on other server). Is it possible ? If, yes! then please do help me out by posting step by step procedure or any sort of tutorial link (because I'm beginner). For now, I'm using odoo10…
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
4
votes
0 answers

Error: session expired when I use an odoo endpoint with Php or Javascript

i'm trying to make a request to a search_read endpoint and the result is session expired, my code is this: first i login to get the session_id $data = array( 'json-rpc' => 2.0, 'method' => 'call', 'params' => array( 'db' =>…
4
votes
1 answer

how to change date-picker's default Day of week in odoo?

Currently in odoo date picker shows from Su-Mo-Tu-We-Th-Fr-Sa i want to make it starts from Mo-Tu-We-Th-Fr-Sa-Su in some case and in some case Su-Mo-Tu-We-Th-Fr-Sa. can anyone help me how to achive this as i checked in default odoo 12 addons it is…
Jack Sparrow
  • 628
  • 8
  • 20
4
votes
1 answer

In the common Odoo method 'execute_kw', what does the suffix 'kw' refer to?

I can't for the life of me find any place where the suffix of the name of the common Odoo method execute_kw is explained. What is the kw suffix for? Is it just two arbitrary letters?
4
votes
2 answers

How to set dynamic value in tree parameter?

As we know, there is a button "Add an item" in tree view of form view, click button "Add an item" to create a new line of the one2many. As we know, there is a field "state" in many models. So, I try to fix that match the following two…
MisakaBit
  • 41
  • 4
4
votes
1 answer

Odoo multicolumn index

I need to create a two-column index. I have declared: field_A= fields.Float(string='A', index=True) field_B= fields.Float(string='B', index=True) But that creates two independent indices. I would like to obtain a composite index. Any idea how I…
Dayana
  • 1,500
  • 1
  • 16
  • 29
4
votes
1 answer

How to get report_name in Qweb header in Odoo 10?

I need to show a string in the header of several reports which must change depending on the report which is being printed. By now, I had done this: