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
Auto refresh tree view odoo 15
I am using odoo 15 version. Assuming there is user A and User B.
User A is already landed on customer invoice tree view And after few seconds User B create a new invoice from its login id.
User A should see this new invoice on tree view without…

shashank verma
- 303
- 1
- 3
- 9
0
votes
0 answers
How to Create an Editable Pivot View in Odoo v15
Is there a way to make a pivot table (that is NOT aggreagated) editable directly from the pivot view in Odoo (I'm using Odoo v15)?
For example let's say I have my model as the…

abdeltif-b
- 25
- 2
- 6
0
votes
0 answers
Odoo 15 my onchange function is not triggered when I create the object from python code
I am using Odoo 15 and here is my code.
class StockMoveInherit(models.Model):
_inherit = 'stock.move'
def button_manufacture(self):
obj = self.env['mrp.production']
values = {
'product_id': self.product_id.id,
…

user3606682
- 1,945
- 3
- 17
- 24
0
votes
1 answer
odoo15 enterprise edition installation in Linux VPS server
I am trying to install odoo15 enterprise edition on a Linux VPS server , But I'm facing many issues during installation .
Can you guys help me with a clear guidelines about the installation process?

Yuvaraj
- 3
- 2
0
votes
0 answers
odoo 15 multi company job post
here is the scenario :
I have 4 companies (multi company enabled)
Company A posts a job in "Recruitment" and is reflected on the Jobs Portal.
Company B,C,D posts jobs in "Recruitment" and is not reflected on the Job Portal.
When modify Record…
0
votes
1 answer
How can i add a module in odoo15
I use mac to study odoo,
And i use this document to build my first module with command
./odoo-bin --addons-path=/Users/xuhongxin/src/custom,addons
And i successfully start the odoo,
But i can not find the estate module;
How can i solve this…

guruboy
- 359
- 2
- 3
- 7
0
votes
2 answers
How to migrate datas from version 14 to 15 in odoo
I'm having database with data in version 14 and also having new database without demo data in version 15. I need to transfer data from v 14 to v 15.
Any help is appreciable!

Sakthi Priya
- 209
- 4
- 19
0
votes
1 answer
How to duplicate Quotation/Order report and customize the duplication?
I would like to create a similar Quotation/Order report, without adding any line to the files code (I agree on changing/adding new lines on the database)
The Quotation/Order is perfect for sending it to the clients during the negotiation, but after…

Eduardo Marzolla
- 19
- 3
0
votes
2 answers
How to insert parent logo on Quotation/Order report?
I'm trying to insert the logo of my client on the "Quotation/Order" report. I already got to insert the logo of the contacts of the clients using the code below on the report_saleorder_document view:

Eduardo Marzolla
- 19
- 3
0
votes
1 answer
How can I print sgst and cgst in qweb odoo15?
I need to print sgst and cgst labels with their value on qweb.
The below code is printing amount untaxed, cgst, sgst, total value in the table. But I need to print only sgst and cgst labels and their value.
How can I do it in Odoo v15?

Sakthi Priya
- 209
- 4
- 19
-1
votes
1 answer
How to add domain in onchange function for a One2many field
Understand the situation
I 've 2 model below. I have added a onchange function based on 'requirement_id' . I want to add a domain filter in panel_id field from requirement_id . is it possible to do? my onchange function in this way it's not…

Shojib Hasan
- 176
- 1
- 7
-1
votes
1 answer
no changes in menu items after updating this code trying to remove the some of them
enter image description here highlighted are the submenu item i want to hide in a custom module.
here are some changes that i have done on backend side but it does not effect the UI side
adding menu in static please click to see
i have added in…

Muhammad Awais
- 1
- 5
-1
votes
1 answer
Error when making backup in odoo 15 Database backup "Postgres subprocess ('pg_dump', '--no-owner', '--file=/tmp/tmpw2whn999/dump.sql', 'BBDD')"
I am using odoo 15 and migrated from the previous version.
When using the "Manage Databases" option and choosing a database it gives me the error
"Database backup error: Postgres subprocess ('/usr/bin/pg_dump', '--no-owner',…

Geovanny Dután
- 1
- 2
-1
votes
1 answer
my code for the button to export data in an xlsx file (Excel) does not work
This is my code but my code is not working on my button to export XLSX data from Odoo
# coding: utf-8
from odoo import fields, models, api, _
import time
from datetime import datetime, date, timedelta
from odoo.tools import…

SirDomini x
- 3
- 2
-1
votes
1 answer
Trying to write an automated action to execute next activity
here's a picture of what it looks likeI am trying to write an automated action in odoo 15 to create next activity that when triggered sends a reminder to a generic user that it gets from the record but it is not finding the user, i think i wrote the…

Daniel b
- 1
- 2