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 12 is the newly updated version so far in the ODOO series.
Questions tagged [odoo-12]
934 questions
6
votes
3 answers
error in suds-jurko setup command: use_2to3 is invalid
enviroment info:
python3 --version:Python 3.6.5
pip3 --version:pip 21.2.4
when i execute : "pip3 install -r requirements.txt" there is a error:error in suds-jurko setup command: use_2to3 is invalid

guruboy
- 359
- 2
- 3
- 7
6
votes
1 answer
ERROR: could not serialize access due to concurrent update
I am using PostgreSQL database (V 10) and odoo ERP (V 12).
When ever I try to update a table using 2 different users at the same time, I am getting
ERROR: could not serialize access due to concurrent update
I am getting this error even if I use…

Ajay Viknesh
- 127
- 1
- 2
- 9
6
votes
3 answers
Odoo 12 docker compose doesn't display mounted extra addons
I'm in search to create an extra addons on my odoo.
I've created an addon, and I've set in my docker compose file to mount the folder containing my addon on a folder into my odoo docker image defining to read also this folder when odoo container…

mastrobirraio
- 135
- 1
- 9
6
votes
3 answers
Not able to connect postgresql with odoo
I configured odoo in aws ec2 and connecting Postgresql from rds when I run the command ./odoo-bin --config=/etc/odoo.conf and try to access from a browser, I'm getting the following error:
ERROR odoo_db odoo.modules.loading: Database odoo_db not…

coder
- 451
- 2
- 7
- 13
6
votes
2 answers
Why is Odoo called 'Odoo'?
Does anyone know:
What does the word Odoo stands for?
If it is not an abbreviation, then what does Odoo means?

Tintumon M
- 1,156
- 2
- 14
- 36
5
votes
0 answers
Odoo installation error: psycopg2.errors.UndefinedTable: relation "ir_module_module" does not exist
I want to install Odoo version 12 on my "Windows Server 2019" with "Python 3.9" and "postgresql 13" but when I want to create DB this error is shown:
Database creation error: relation "ir_model" does not exist LINE 1: SELECT * FROM ir_model WHERE…

Misagh Mi
- 61
- 1
- 5
5
votes
1 answer
How to extend base odoo docker image correctly with additional pip packages?
I need to extend basic odoo image installing some python packages. I have a problem related specifically to the odoo docker image.
I've tried writing my own Dockerfile that inherits odoo:latest and install my pip packages over it and it didn't work…

vladkhard
- 87
- 2
- 10
5
votes
1 answer
How to delete a record without immediate database effect
In a precedent question, I was looking for the BaseModel.new method to behave like the create method from ORM, but without writing changes in the database.
Does the same method exist, but acting like unlink? I would like to delete a record from my…

mistiru
- 2,996
- 3
- 11
- 27
5
votes
1 answer
Odoo inherit error when try to use mail_thread
I am trying to make a notification app in odoo which will send mail to the user. I have found documentation https://www.odoo.com/documentation/12.0/reference/mixins.html, but when I trying to start odoo I receive error non-existing model…

Sabr
- 163
- 4
- 14
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' =>…

LyonOconner
- 47
- 8
4
votes
1 answer
What is the difference between Odoo RPC, Xml RPC, JSON RPC and REST API in Odoo?
I'm confused between the concepts of Odoo RPC, XML RPC, JSON RPC, and REST API in the domain of Odoo. To my knowledge, these are the only 4 APIs that can be used in Odoo.
In Odoo's documentation, only xml rpc and json rpc are mentioned. But on this…

Hussam Cheema
- 536
- 1
- 7
- 13
4
votes
1 answer
Odoo E8103: SQL injection risk. Use parameters if you can
I'm using odoo pylint and encountered this message 'Odoo E8103: SQL injection risk. Use parameters if you can'. It was referring to these following example SQL query line pattern:
self.env.cr.execute("""SELECT sq_qty , prod_id ...
FROM st
…

plexus
- 101
- 1
- 11
4
votes
2 answers
How to give user groups(XML) in the model ir.actions.server odoo 12?
I used this xml code to add a button inside the 'Action',But i need to restrict the button to some user groups,
No Show
…

Raihan
- 193
- 2
- 21
4
votes
1 answer
how to fix ImportError: No module named 'passlib
how to fix ImportError: No module named 'passlib
/Downloads/odoo-12.0$ ./odoo-bin
Traceback (most recent call last):
File "./odoo-bin", line 5, in
import odoo
File "/home/omprakash/Downloads/odoo-12.0/odoo/__init__.py", line 125,…

Omprakash Yadav
- 107
- 1
- 3
- 12