Questions tagged [odoo-15]

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.

503 questions
0
votes
1 answer

Override Function in ODOO15

With the new changes in odoo15. I am not able to override a function in Javascript. I have created a custom module and imported the required. I want to override _executeReportAction function import {download} from "@web/core/network/download"; …
0
votes
1 answer

how to print looped data from a method

i created a method as below: but it only takes the last loop data not all the data to xml for generating pdf,so need a way to generate pdf on a loop from this method def bsku_asin_picking(self): website =…
Sidharth Panda
  • 404
  • 3
  • 17
0
votes
1 answer

Field is not a stored field, only stored fields (regular or many2many) are valid for the 'groupby' parameter in Odoo 15

In the model, I added a Many2one field that is teacher_id and related to res.users, then i added teacher_gender that related to teacher_id.gender. teacher_id = fields.Many2one('res.users', string='Teachers', required=True,…
fudu
  • 617
  • 1
  • 10
  • 19
0
votes
1 answer

How to see Private Information Tab in Odoo 15

I was created an new user by copy action in "Marc Demo" user, and called it "Marc Demo 2", and login to that user, then i go to "My profile" and it show a popup like this: But i can't see the "Private Information" tab in this user. So here's the…
fudu
  • 617
  • 1
  • 10
  • 19
0
votes
1 answer

odoo 15 database (zip includes file store) restore error

When I try to restore database backup to another server (digital ocean to test server on aws), showing an error like this, I tried to change odoo base to same as of the live server. Traceback (most recent call last): File…
0
votes
0 answers

How can i encrypt my custom modules source code files in odoo framework?

I used cryptography library like as following: from cryptography.fernet import Fernet # key generation key = Fernet.generate_key() # string the key in a file with open('filekey.key', 'wb') as filekey: …
0
votes
1 answer

Create report from wizard in odoo 15

I want to create a report pdf from wizard, but it's not working, here's my code: /var/www/html/odoo_15/addons/school/wizard/search_and_print_calendar_wizard_view.xml
fudu
  • 617
  • 1
  • 10
  • 19
0
votes
1 answer

Odoo15 custom module creation

I just created my new custom module, but I'd like to have the form view present in the module. I used the scaffold method to drag all the required files for the module, but when I try to affect the file view.xml so I can reflect the fields I already…
0
votes
1 answer

Odoo 15, RPC_ERROR error message when updating module

I created a custom module, and installed in my Odoo 15 session, after some changes, I tried to update it, but I get the following error message, How to fix it please? Thanks, **RPC_ERROR** Odoo Server Error Traceback (most recent call…
Hicham
  • 23
  • 4
0
votes
1 answer

Create custom excel report from wizard in odoo 15

I am trying to generate an excel report from wizard using report_xlsx module but i am getting below error. Traceback (most recent call last): File "/home/kabeer/Projects/Odoo15ce/odoo/custom_addons/report_xlsx/controllers/main.py", line 76, in…
KbiR
  • 4,047
  • 6
  • 37
  • 103
0
votes
0 answers

How to add more than one Discount in odoo 15 accounting

I would like to create invoice with 3 discount custom compute in odoo 15, everything almost done but price_subtotal always get wrong value like this can anyone tell me what is missing please? this is the method i have made def…
Akhmad Ali
  • 85
  • 6
0
votes
0 answers

V15: Barcode App Error | You are expected to scan one or more products or a package available at the picking location

We have Products which we are buying in Pack and selling in Pack. for e.g. Pack of 6, Pack of 12. Now product has 1 barcode and each packaging has different barcodes which I have added on product master packaging lines. Now I created a purchase…
0
votes
2 answers

Install Odoo 15 No module named 'babel'

Dicide to use odoo 15. It need python v3.7 - ok install v3.7. Try to run but have error "ModuleNotFoundError: No module named 'babel'" Then use (venv) rmax@rmax-comp:~/odoo/odoo15$ pip install babel Requirement already satisfied: babel in…
Umks
  • 55
  • 2
  • 8
0
votes
1 answer

Why description has


in description by default for some products in stock form odoo 15?

In Inventory, some products description shows the tag as given in image by default. Why it shows and how it raised under which condition?
Sakthi Priya
  • 209
  • 4
  • 19
0
votes
1 answer

Custom fields on res.config.settings not saved

I would like to add configuration for a custom Odoo module. However, when I fill in a value for the setting test_field and click save, the value does not seem to be saved since when I refresh the page, the value is no longer filled in the input…
dloy
  • 33
  • 5