Einträge mit Schlagwort odoo

Odoo 15: Add Button to Kanban View

In this example, we show how to add a button to the „Control panel buttons“ of the kanban view.

Weiter...


TIL: odoo scaffold

Create a new module named foo in the custom addons directory my-addons:

Weiter...


Odoo Idiosyncrasies

This is a collection of notes about Odoo, its ORM and „framework“.

Weiter...


Graph Odoo Request Duration with Loki

Before trying to improve performance, it is a good idea to measure. We want a graph that shows us request durations segmented by query time (the time it takes Postgres to gather the data) and remaining time (how long it takes Python/Odoo to do things with the data), like this:

Weiter...


Odoo Format Fields

Suppose you have a simple Integer field defined on your model like this:

Weiter...


TIL: Odoo Sequences

Wir wollen für die Chancen (Tabelle lead) eine fortlaufende Nummer number.

Weiter...