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 post an XML ElementTree with Python Requests in Odoo 15
Good day, I am trying to post xml file that i have generated with ElementTree, when i try to post it i get error below. Please help.
{"env:Envelope": {"@xmlns:env": "http://schemas.xmlsoap.org/soap/envelope/", "env:Header": null, "env:Body":…

imbra
- 33
- 4
1
vote
1 answer
How to implement a navigation panel in tree view in Odoo?
I want to implement a side navigation panel like the one in the Chart of Accounts view in Odoo
I can't find any documentation for this feature, how to implement it?

Ehab
- 566
- 6
- 24
1
vote
0 answers
How to List Many2Many field in ElementTree Odoo 15
Good day,
I have a field many2many (toothNumbers) and I want to list it's data (name) in ElementTree file(xml) I am generating with python in Odoo15. I need to list them but showing each it's name, not ids.
I have written many for & while loops but…

Abraham Kalungi
- 45
- 1
- 10
1
vote
2 answers
Odoo15 | Uncaught Promise Error > deserializeDateTime
I've been developing some modules that extend Sale, Inventory, and MRP (manufacturing) and have been getting this error on occasion.
I've tried clearing my browser's cache but that hasn't worked to address the bug.
As a temporary fix I'll drop my…

Chris Rad
- 31
- 5
1
vote
0 answers
In inherited search view field not found
First I Inherit hr.employee model in my custom module and add a field unique_id. Than in my custom module I inherit hr.employee search view for this unique_id field. But throw this error, Field "unique_id " does not exist in model…

Shoriful Islam
- 11
- 1
1
vote
1 answer
Odoo15: resize invoice logo
I need to change size of logo on invoice header only. At first attempt I tried this for selected layout:

Newbie
- 53
- 6
1
vote
1 answer
extending javascript and qweb template in Odoo 15?
I am trying to tweak the odoo wysiwyg web_editor in Odoo 15, just adding a few font sizes as an example. But it does not seem to work.
What i have tried: I created a module to isolate the…

jwaes
- 25
- 3
1
vote
1 answer
How Can I Add Website Decimal Quantity in Odoo
I Have a custom module website_decimal_quantity. after installing this module, In the website shop cart, when the user clicks on the + or - button to adjust quantity, It should add or deduct .1 value from it. i find out that a function…

Odoo Beginner
- 11
- 2
1
vote
2 answers
AttributeError 'get_frontend_session_info' odoo
I have a project in odoo15 running and created database, but after to try to open login page i have this error. Someone can help me please.
Error when render the template
AttributeError: 'ir.http' object has no attribute…

Ruben de Pina
- 41
- 1
- 5
1
vote
5 answers
How to get current company id odoo 15?
I've try this:
[('company_id','=',company_id)]
self.env.company_id
self.env.user.company_id
But those all 3 ways are leaded to default company, but not current company.

fudu
- 617
- 1
- 10
- 19
1
vote
1 answer
Odoo 15 notification navigate back to task/record
I am trying to send notification to user A then user B Approves a task. (but using the odoobot user)
notification_ids =…

Moaz Mabrok
- 697
- 10
- 32
1
vote
1 answer
AttributeError: '_unknown' object has no attribute 'id' - in Odoo 15
I added a custom field res.patner, this field in Char data type, now I want to add it on account.move by the code below.
class InvoicingMove(models.Model):
_inherit = 'account.move'
patient_medical_aid_number_id =…

Abraham Kalungi
- 45
- 1
- 10
1
vote
2 answers
How to deal with single quotes in xpath in odoo 15?
I am trying to replace a element using xpath, but it contains a single quote inside the condition.
here is what I tried.

KbiR
- 4,047
- 6
- 37
- 103
1
vote
1 answer
How to change nginx configuration context URI for odoo
My odoo15 works fine for this URL -> https://vidatest.xyz and below is the nginx configuration as suggested by odoo documentation.
#odoo server
upstream odoo {
server 127.0.0.1:8069;
}
upstream odoochat {
server 127.0.0.1:8072;
}
# http ->…

Ashar
- 2,942
- 10
- 58
- 122
1
vote
2 answers
Odoo - Override a specific write and create method
I have a problem with the overload of the create() and write() methods.
Let me explain.
My custom module inherits from a custom module in which I have no rights to modify the code. These 2 modules overload the create and write methods. On the other…

PseudoWithK
- 321
- 1
- 19