12,873 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
2
votes
0
answers
52
views
Access ir.rule res.partner Odoo V19 / Troubleshooting with chatter
I have created a custom ir.rule for res.partner :
<record id="access_only_my_documents_rule" model="ir.rule">
<field name="name">Access only own documents ...
Advice
0
votes
0
replies
16
views
How to make _render_template function in Odoo to render OWL component?
On Odoo, How to make _render_template function in odoo to render OWL components instead of static templates. so that python templates become isomorphic with javascript OWL templates?
The reason behind ...
0
votes
0
answers
64
views
How to register a payment of an invoice with Odoo 19 JSON2 API?
I'm working with Odoo 19 Enterprise with Json2 API. I want to register a full payment of an invoice, I tried:
https://myhost/json/2/account.payment/create
with payload:
{
"vals_list": {
...
Tobia's user avatar
- 9,625
0
votes
0
answers
68
views
I'm encountering an error in helpdesk.ticket when calling a custom method within a scheduled action
This is my scheduled action in Odoo:
action image
and this is my code:
# -*- coding: utf-8 -*-
from odoo import models, api
import pika
import json
import logging
_logger = logging.getLogger(__name__)...
1
vote
0
answers
65
views
Deploying Odoo 18 (Docker/Dockploy): Container crash or 502 Bad Gateway when using custom odoo.conf to pre-configure DB
I am trying to deploy Odoo Community Edition (v18) on a Debian server using Dockploy.
My Setup:
I have a custom folder for my own modules.
I have an oca folder for community modules, managed as Git ...
-1
votes
1
answer
69
views
In Odoo.sh production branch is not updating. How to fix Odoo.sh branch error?
You know I have built a website using Odoo custom module. I have published the site using Odoo.sh + Cloudflare. It was working fine, and I can access the site globally. But suddenly it's stopped ...
0
votes
0
answers
78
views
How to display and edit a One2many field in a form view as an embedded form, not a list?
I’m trying to model a one-to-one relationship between two models in Odoo.
My approach was to use a Many2one + One2many, but on the form view Odoo always displays the One2many field as a list instead ...
Advice
0
votes
0
replies
42
views
Attempting to print a Gnatt View in Odoo
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 ...
1
vote
1
answer
91
views
DB corrupted in Odoo 13 [closed]
I have a running production instance with existing data in my production database. Recently, I encountered an error, and upon investigation, I discovered that some core modules were unexpectedly ...
3
votes
0
answers
86
views
How can I make a fields.Monetary keep 5 decimal places?
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:
...
0
votes
1
answer
87
views
ODOO Field service Worksheet, how to solve indentation problem in the pdf
I'm using "Odoo 16.0+e (Enterprise Edition)" and I premise that I'm not a software engineer but in the past I successfully managed to modify the Qweb code that generates the invoices and the ...
1
vote
1
answer
145
views
Unable to connect Redis to Odoo 19
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 ...
0
votes
0
answers
53
views
How to create chained selection fields in Odoo using API data?
I want to create chained selection fields in Odoo, where the value of one field depends on the value of another.
For example:
When I select a "Category", it should call an API and load the
options ...
2
votes
1
answer
76
views
Portal users can`t see product model
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 ...
0
votes
0
answers
141
views
Undetected chrome driver doesn't work in odoo model
I am trying to scrap a website from a model in odoo. It get executed using an action button.
I am using Docker to contain the app.
However the driver never worked for me, even with normal selenium so ...