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 create MO with OdooRPC, with the associated stock.pickings?
I'm currently working on programmatic creation of Manufacturing Orders (MOs) in Odoo 15. Although I've been successful in generating the MOs themselves, I've encountered a challenge where the associated stock pickings are not being created as…

apexprogramming
- 403
- 2
- 14
1
vote
1 answer
'Missing dependencies' OWL Odoo15
I'm currently learning OWL and I want to do something like chat in the "Web Site" module (To display messages from the "Communication" module on the site).
I created a separate tab called "Chat" (I will output all messages from the "Communication"…

Dread
- 25
- 5
1
vote
0 answers
In odoo15 which is the function that creates a stock_move_line while manually select a serial number and save it in an inventory transfor
I want to know which function is creating these stock move lines

Ajay Balachandran
- 31
- 2
1
vote
2 answers
How to hide python traceback in Odoo
Is there a way to hide odoo error traceback for security reason ?
Note : using Odoo 15
example of traceback :

Omar Tougui
- 183
- 2
- 8
1
vote
1 answer
Odoo How to use custom fields in the address layout
I have inherited the res.partner model and added a custom field named "firm1"
Now, I need to display this field on every report in the address block.
To configure this I went to contacts > Countries > 'My Country' and tried to add my custom field…

unnamed-dev
- 165
- 8
1
vote
1 answer
Odoo: Encoding won't work if different layout is called
so I inherited "report_pricelist" in order to change the basic layout to the external layout:

CafeConMasCafe
- 51
- 6
1
vote
0 answers
Show parent.parent combobox from one2many model Odoo
for example I have three model :
class state(models.Model):
_name = 'odoo_school.state'
_description = 'State Reference'
name = fields.Char(String='Name')
district_id = fields.One2many('odoo_school.district', 'state_id',…

Sarutobi
- 11
- 2
1
vote
0 answers
Remove Odoo product prices from Google Results?
How do I remove the product prices from the Google Results for a particular website (in a multi-website environment)? (Primarily the price pointed to by the yellow arrow)
BTW, with my site, the prices only appear in the results when your Google…

velkoon
- 871
- 3
- 15
- 35
1
vote
0 answers
Remove download button from odoo's pdf_viewer main widget
I found this answer and it helps to remove the download button from field's widget, but how can I do this with the main widget? I mean, the one that appears when you click on records' attachments.
Remove download button from odoo's pdf_viewer…

lorelore_m
- 11
- 1
1
vote
0 answers
How can I differentiate a Manufacturing order from a back order ? Odoo V15
I need to know, how I can differentiate a Manufacturing order (MO) from a backorder.
A backorder is created, when only a part of the MO is beeing processed. MO and backorder are in the same model, so a automated action, which should only be…

kayalotta
- 53
- 9
1
vote
0 answers
Two reports in one with a if odoo15 qweb-pdf
I'm trying to extend a report with another one. If an if is true, the part should be loaded from another template and filled with the appropriate data. Maybe someone can give me a tip how I can implement this. Unfortunately I'm not getting any…

Thomas
- 11
- 2
1
vote
1 answer
How to get selected value of selection field odoo 15
i have this selection field
Fam = fields.Selection(selection=[('x1','x1'),('x2','x2')])
i want to get the selected value of Fam selection field and write the condition if no item is selected in Fam
i tried this code
@api.onchange('Fam')
def…

Zoro
- 47
- 5
1
vote
1 answer
How do I add translation to custom templates in odoo 15
In odoo 15 I have created a custom layout template for an invoice report (PDF). This template contains some texts in German language. Where do I have to specify any translation of these texts so they are considered if the invoice is printed in e.g.…

SnoopyBrown
- 51
- 8
1
vote
1 answer
Odoo V15 - How to set a line with an Onchange Function
I have this calendar that is made with Javascript.
When you click in "Libre", a view opens, where you can create a reserve. I want the reservation line as default and look something like this. In this case I did it manually, and I want it to appear…

odoo newbie
- 179
- 10
1
vote
1 answer
Can't call odoo from iframe
I can't call odoo from iframe . Both odoo and iframe are in same Nginx server .I added
add_header X-Frame-Options SAMEORIGIN always;
in Nginx configuration file .
When i click open site in new window it opens but the X-Frame option is Deny here…

code_explorer
- 472
- 6
- 18