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
0
votes
1 answer
How to add a custom module from a Github repository to an Odoo.sh project?
I have written and tested an Odoo module locally and pushed it to it's own Github repository. Now I want to add it to an Odoo.sh project.
I have tried creating the Odoo.sh project from the repository. Sure enough it adds the code from my repository…

kpg
- 7,644
- 6
- 34
- 67
0
votes
1 answer
Calling function from another model in wizard, Odoo
I can call the function from another model in wizard. But there is a problem. When i call the function from another model, I can't use the fields.
Calling function code:
self.env['inventory.menu'].action_delete()
Function from another model:
…

Enes Kara
- 81
- 6
0
votes
0 answers
Convert Odoo python implementations into ASP.NET
I'm new to Odoo and referred documentation and implemented functions using python language. Now I want them to convert ASP.NET. Could you help me to do this task?
import xmlrpc.client
url = 'http://localhost:8069'
db = 'test_db'
username…

The Ark A
- 3
- 4
0
votes
2 answers
How to find an internal identifier for an Odoo database?
In Python, I want to pass a unique identifier for an Odoo database to a third-party application so that I can identify which DB the request has come from.
Where can I find a unique identifier?

kpg
- 7,644
- 6
- 34
- 67
0
votes
1 answer
How to add Time field in models database in odoo 15?
In Py
time = fields.Float('Time')
in views
the above method is not working as when I try to record time format such 10:50,It shows invalid error message. In order to save the window after editing, I have to…

Pola Pola
- 1
- 1
0
votes
1 answer
How to create data once and then update in odoo15
There are some situation where we just need to add a record once and then update only. Suppose we save some settings data for our application, then we only update that data only. No new record will be added. I think there is a nice approach to do…

Abdus Sattar Bhuiyan
- 3,016
- 4
- 38
- 72
0
votes
1 answer
Odoo: how to find a view of a modal window in odoo calendar and translate label of name field?
i want to translate this field. A window appears when you click on calendar and after entering meeting subject it create a new meeting.
I`m trying to find it in views.
I Changed field name in models:
name = fields.Char(string='Тема зустрічі',…

Wald Sin
- 158
- 11
0
votes
1 answer
How to auto fill stored value in wizard for odoo15
I have a field inside a transient model:
cash_collection = fields.Float(string="Cash Collection")
this field already have a value.Is there any way to show this stored value when wizard popup?

Abdus Sattar Bhuiyan
- 3,016
- 4
- 38
- 72
0
votes
1 answer
How to permanently remove the Tittle Odoo and favicon form Taskbar
Good day,
How can I permanently remove the title Odoo and the favicon from navigation menu in Odoo 15.
I am looking for a solution in code, the usually way of activating the debug mode and replace the favicon doesn't work. It first loads the Odoo…

Abraham Kalungi
- 45
- 1
- 10
0
votes
0 answers
Add employees as followers when sales quotations was confirmed
I created an automated_action, which should add specific employees as followers dynamically. The fields are already existent in the model. But my automated action doesnt work at atll, no new followers will be added…

for-loop
- 47
- 1
- 8
0
votes
1 answer
How to delete records in a different model in Odoo
I have added a Boolean attribute to res_config_settings. When the Boolean is False I want to delete all records in a custom Model ('my.device').
I have tried three different approaches:
1.In res_config_settings:
devices =…

kpg
- 7,644
- 6
- 34
- 67
0
votes
1 answer
Odoo Configuration calculation - limit-request
Was configuring odoo-15 for a 4GB server.
4 * ((0.8150) + (0.21024)) ~= 1.3GB(Allocating less than 50% system RAM for odoo)
[options]
limit_memory_hard = 1073741824
limit_memory_soft = 629145600
limit_time_cpu = 600
limit_time_real =…

NinjaBat
- 370
- 4
- 20
0
votes
1 answer
Profiling code not working for Odoo version 15.0
I am adding profiler on my custom method on Odoo v15.0
I have referred below doc for code profiling
https://www.odoo.com/documentation/15.0/developer/howtos/profilecode.html
Below is the syntax i am using
from odoo.tools.profiler import…

shashank verma
- 303
- 1
- 3
- 9
0
votes
1 answer
Odoo15 one2one relationship between two models
I'm building my own module to manage fairs and exhibitions. The booth model from my module should have a direct connection to the booth model from the odoo events module (event.booth)
Every booth from my module can only have exactly one booth from…

unnamed-dev
- 165
- 8
0
votes
1 answer
Odoo - how to stop show barcode in picking operations report
I enabled LOT/SERIAL NUMBER.
And when I tried to print picking operations report, the LOT/SERIAL NUMBER field show me a barcode.
I just need the number, how can I stop print the barcode out? Thanks.

redpill
- 87
- 2
- 8