Use this tag for version specific questions about Odoo 15 - the suite of open-source business applications written in Python. When using this tag also include the more generic [odoo] tag where possible.
Questions tagged [odoo-15]
503 questions
1
vote
1 answer
How to make an invisible field visible again in odoo 15
In the sales module in odoo, when the client wants to create a new sales quotation, the Quotation date is not visible. So in developer mode, i went into the form view and realised it had an attribute attached to it with an invisible attribute. I…

Nate
- 21
- 1
- 6
1
vote
1 answer
How to make custom field searchable in website_sale in Odoo v15?
So I have created a number of custom fields on Inventory -> Products by adding the fields and then modifying the View from Developer mode.
Furthermore, I made those fields searchable inside the Oddo backend (in both Inventory -> Products and Website…

dkasipovic
- 5,930
- 1
- 19
- 25
1
vote
2 answers
Create Button is not showing up after following the Odoo Tutorial when creating a new module
I am in the process of learning to develop Odoo and started by following this tutorial https://www.odoo.com/documentation/15.0/developer/howtos/rdtraining/06_firstui.html . Currently I am stuck on chapter 6.
I created a estate_menus.xml file and a…

Lea Teresa Neubert
- 11
- 1
1
vote
1 answer
Odoo15 - Delivery Slip report can't be translated
Issue: Delivery Slip PDF report can't be translated when the language changed
Reproduce Step: Inventory-> Delivery Order -> click into one record -> print-> delivery slip -> change user profile languare and try to download report again.
note: the…

redpill
- 87
- 2
- 8
1
vote
1 answer
Expected singleton: res.users() when create new invoice programmatically
I'm trying to create a new invoice in controller:
request.env['account.move'].sudo().create([
{
'move_type': 'out_invoice',
'journal_id': 1,
'invoice_date': '2020-01-10',
'invoice_line_ids': [(0, 0, {'product_id':…

fudu
- 617
- 1
- 10
- 19
1
vote
1 answer
Is there a way to change the sequence of value while inheriting selection field Odoo
I have a selection field and I want to inherit and update the selection field without overriding, here is what I am implementing.
Base field:
test_field = fields.Selection([ ('a', 'A'),('c', 'C'),],'Test Field')
The way I inherited
test_field =…

Bishal Ghimire
- 647
- 7
- 15
1
vote
1 answer
I'm having trouble installing Odoo in file requirements
I followed all the installation steps from the Odoo Documents
When writing this pip install -r requirements.txt
I hope the experts in Odoo and Python can help me solve this…

ayobqorban
- 47
- 4
1
vote
1 answer
odoo 15 ldap user not able to login
I created a new ubuntu server and new database, connected it to ldap. After configuring ldap, when i try to login it just takes long time and do nothing not even logs. when I try to login with a normal user it works fine. I tested the connection…

Moaz Mabrok
- 697
- 10
- 32
1
vote
1 answer
How to display an existing tree view inside notebook form view in odoo?
I have a tree view of model X and I want to display it in a form view of model Y
How can I achieve that?

Rama Alty
- 96
- 1
- 6
1
vote
0 answers
odoo 15 default_partner_id is not correctly used from context
we are migrating our odoo v13 App to odoo v15.
We have a model that is using delegation inheritance to extend a res.partner (_inherits = {"res.partner": "partner_id"}). In res.partner we have an action (act_window) to create a new instance of our…

Jacob
- 11
- 4
1
vote
1 answer
hide field based on model odoo 15
I've a 'school' module to work with students and teachers.
And I've a wizard which have a many2one field and want to hide it based on current model that we are standing.
I.e: we are standing on model 'school.teachers', then we will hide this field,…

fudu
- 617
- 1
- 10
- 19
1
vote
1 answer
Error when install Odoo15: directory not writable
I just installed odoo15, but when I tried to start it, I get "Internal Error Message", and I get the follwing message from log file:
return self.app(environ, start_response)
File "/opt/odoo/odoo/http.py", line 1464, in dispatch
explicit_session =…

Hicham
- 23
- 4
1
vote
0 answers
Odoo 15 forecast report not working over ssl
I am experiencing a strange error with Odoo 15. When I run a forecast report for a product if its done over SSL I get this error
Uncaught Promise > Cannot read properties of null (reading 'querySelector')
The strange thing is this only happening…

apexprogramming
- 403
- 2
- 14
1
vote
2 answers
Odoo Add Multiple Group With Different Condition For the Same Field
Hope all is well for you guys, gday.
So I inherited a field called date_done from stock.picking model, which has readonly:true attribute by default. I revoked it to readonly but not in 'assigned' status for all Odoo user in the code below :

altela
- 306
- 2
- 13
1
vote
0 answers
Nginx Conf for Odoo V15 SSL
I would like to have a solution to configure my Nginx for Odoo V15 SSL.
With the configuration following I have an bus.bus error coming with access like erp.mydomain.fr or erp-society.mydomain.fr
I would like to have multiple access to my server…

NeoGiani
- 11
- 4