Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
52 views

I read that from Odoo v.17 onwards, CSS files should be listed under the assets section of the manifest file, like so: 'assets': { 'web.assets_backend': [ 'mydashboard/static/...
iSofia's user avatar
  • 1,577
Advice
0 votes
0 replies
37 views

I am interested in printing the Gnatt view via the Project module in Odoo. I am currently using version 18 enterprise. It seems that in previous versions of Odoo this might have been an option. I ...
user2613041's user avatar
3 votes
0 answers
78 views

I need a monetary field to keep 5 decimal places (e.g. 12.34567), but Odoo version 18.0 enterprise keeps rounding to the currency’s precision (2 decimals for my company currency). Here is my code: ...
H 19's user avatar
  • 31
1 vote
1 answer
112 views

I am using Odoo 19 on an Ubuntu 24.04.3 LTS VPS server. I tried to use Redis for caching, but it is not working. I followed the steps below. sudo apt install redis-server -y sudo systemctl restart ...
Muslehuddin Juned's user avatar
2 votes
1 answer
73 views

On the website, I want to show users sales orders and products. The problem I encountered is that Odoo does not want to display both (sales orders and products). Therefore, I added recording rules and ...
Anton's user avatar
  • 135
2 votes
1 answer
52 views

Here's is output from Odoo shell >>> env['stock.quant'].search([('on_hand','=',True),('product_id','=',6800)]) stock.quant(1189, 7017, 7914) >>> p=env['product.product'].browse(6800) ...
Seaworn's user avatar
  • 586
0 votes
1 answer
322 views

I overrided the default js method onDownloadButtonClicked (odoo/addons/web/static/src/views/pivot/pivot_render.js) for downloading xlsx files (it`s my method) statis/src/js/views/my_render.js /** @...
Anton's user avatar
  • 135
0 votes
2 answers
114 views

I am working with Odoo 14, and I need to remove the CNPJ/CPF title from the sale.order PDF. I’ve managed to remove the data itself, but the title CNPJ/CPF: is still showing up. Here is the XML code I'...
FXU's user avatar
  • 11
3 votes
1 answer
72 views

Issue: I'm encountering a TypeError: unsupported operand type(s) for +: 'SQL' and 'str' when trying to install an Odoo module that was working fine in Odoo 17, but now has issues after migrating it to ...
user29412116's user avatar
1 vote
1 answer
143 views

Exception: Module loading logistics failed: file logistics/security/ir.model.access.csv could not be processed: No matching record found for external id 'model_logistics_order' in field 'Model' No ...
Anton's user avatar
  • 135
3 votes
1 answer
106 views

I need some help. I made a functionality that allows finding duplicate records in the system and these duplicates are displayed in a drop-down list on the pop-up. But I can't display archive records ...
tonbari's user avatar
  • 41
0 votes
0 answers
114 views

I'm trying to implement a custom login mechanism in Odoo where users authenticate using an OTP (One-Time Password) sent to their email, instead of the traditional username/password method. My goal: ...
H 19's user avatar
  • 31
0 votes
1 answer
83 views

I'm currently building a pipeline to integrate Odoo with one of my services. As part of this, I need to access the content of the worksheet linked to a project task. I've been exploring the JSON-RPC ...
Jimi's user avatar
  • 1
1 vote
1 answer
196 views

As the title said, I need to add some fields that would be available on every modules, as default. They are phone number, room, and extension number. Almost all internal modules are using the phone ...
Magician's user avatar
  • 2,157
0 votes
1 answer
63 views

I'm curious how to add chatter to res.users in Odoo14.I keep trying but keep getting error. from odoo import models, fields, api class ResUsers(models.Model): _inherit = ["res.users", &...
Denny's user avatar
  • 3
2 votes
1 answer
86 views

I'm trying to simply send an email with BCC (using OCA addons 'mail_composer_cc_bcc'). I have this custom code : def send_email_participant(self): self.ensure_one() template = self.env.ref('...
Dialy's user avatar
  • 21
0 votes
1 answer
63 views

I have a model like this: # Calculated Fields request = fields.Many2one('job.request', string='Request', required=True) e_name = fields.Char('Nama Asset', store=False, compute="...
Magician's user avatar
  • 2,157
1 vote
0 answers
38 views

There is a difference in the response log when I call the API URL http://localhost:8070/api/product in my browser. The response log shows success. 2025-05-21 07:40:00,286 2288 INFO GPE_LIVE Werkzeuge:...
user30595373's user avatar
0 votes
0 answers
33 views

hello here I am a beginner using odoo, where I am still confused about creating an api, I want to create a partner api where I can get and post to be used in react. I have matched the code with gpt ...
StressCodingCok's user avatar
0 votes
0 answers
141 views

I'm working with Odoo 18, in the CRM module, and I want to add a custom button in the top-right view switcher (next to Kanban, List, Calendar, etc.), as shown in this screenshot: What I want: Add a ...
user3450548's user avatar
0 votes
0 answers
43 views

I'm starting with Odoo and according to this documentation: https://www.odoo.com/documentation/18.0/es/developer/tutorials/server_framework_101/05_firstui.html I'll be able to render the views. Here ...
user3347778's user avatar
0 votes
0 answers
43 views

I want to hide edit button when state is confirm. I have search around and find this code. @api.model def fields_view_get(self, view_id=None, view_type='form', toolbar=False, submenu=False): res = ...
Nur Faiz's user avatar
0 votes
0 answers
47 views

Hi I am new to the OWL Framework. I had added a M2M field that links to new model called sally_addons.flower_addon. So to every orderline I could add these many2many, no errors but everytime i refresh ...
Newton Narzary's user avatar
2 votes
1 answer
210 views

I created a module in Odoo 18 and within it, an XML file called product_views. It contains a list view. I added a button to the header of the list, but it doesn't appear. Here is my xml file: <?xml ...
user1929418's user avatar
0 votes
0 answers
53 views

I'm currently upgrading a custom module from Odoo 17 to Odoo 18. In Odoo 17, I had the following code to patch the PivotGroupByMenu in order to filter pivot fields dynamically: /** @odoo-module **/ ...
Hanie Rahimi's user avatar

1
2 3 4 5
258