KPI Balanced Scorecard v.14
The tool to set up KPI targets and control their fulfillment by periods
The app introduces KPI dashboard to manage company and personal targets. The tool helps to organize work as a set of periodical goals and to control those goals in any business or functional area.
Set KPI targets by periods
Scorecard is not just a dashboard, but it is the tool to set and control measurable and time-constrained targets. Both company and individual
Use any Odoo data to calculate KPIs
The app introduces a clear system to get any Odoo storable details: a count of records, a sum or an average of numeric fields, pure Python code
Drag and Drop interface for KPI formulas
Construct advanced formulas to calculate derivative KPIs. Complexity of each scorecard is totally up to you!
Managerial and self control
Share KPI targets with interested users to organize a transparent dashboard of goals: from global to very specific ones
Structured hierarchically and by categories
Consider only those KPIs which are of interest: for example, only sales-related or of a definite user. Hierarchy allows to highlight targets with indicative padding for instant overview of sub-KPIs
KPIs are auto and regularly updated
Actual values are re-calculated by the special Odoo cron job. It is always possible to understand which KPIs require more attention in real time at a first glance
Real-time control and historical trends
-
KPIs values are calculated for a specific period according to chosen date fields (e.g. quotations by 'order date')
-
Plan KPI periods of any duration: annual, quarterly, monthly, weekly, 10-days-long, etc. KPI periods might intersect and might be different for various business areas
-
By default KPI targets of a current period are shown for an instant overview
-
For each KPI target you may observe trends by other periods. Define also tolerance to picture graph (e.g 2-days tolerance - for quarterly periods - 90-92 days, 3-days - for months - 28-31 days)
-
Navigate between various KPI categories and KPI periods in a few clicks from the same Odoo dashboard
-
Export scorecard to an Excel table if you need
-
Copy or substitute KPI targets from other periods to simplify goals' setting
-
Close KPI periods as it is done for fiscal and accounting purposes. It not only holds the Past values, but let speed calculations up
-
KPI periods and KPI targets are set up for each company individually (multi companies' environment)
Drag-and-drop formulas for KPIs
-
KPI construction is as simple as it is to write down a mathematical expression: just drag and drop the parts in a right order with correct operators
-
Odoo would automatically retrieve data from a database according to a defined parts' order for a specified period
-
Formula might be as complex as you require. Merely make sure the operators (subtraction, addition, multiplication, division, exponentiation, brackets, any float number) comply with basic Math rules.
-
For each KPI configure prefix and suffix to make results nice looking
-
Define rounding rules from 0 to 4 decimal points (1 > 1.2 > 1.23 > 1.235 > 1.2346).
-
KPI variables indicate the rules of how to get data. For example, 'total number of sales orders' or 'number of quotations of sales team Europe'
-
Other KPIs - the parts used for derivative calculation. For example, 'Opportunity to sales success ratio' based on KPIs 'Sales count' and 'Opportunities count'
-
KPI constants - the parts which are frozen globally or for a specific time frame. Needed for figures which can't be retrieved from modules and/or which should remain the same during a period
-
'Period Days' is an interval length in days. 'Days Passed' is a length between period start and today (if today is before period end; otherwise period end). Those parameters let calculate per-time KPIs, such as, for example, 'Average sales per week'
Shared KPIs and self-control
-
Full rights for scorecards, all KPIs, targets, and settings belong to users with the right 'KPI Management - KPI manager'
-
Categories of KPIs and/or individual KPI targets might be shared for specific users or user groups
-
It is possible to both grant read-only or editor rights
-
Read-only access for a target let users only observe shared KPIs
-
The section 'Edit rights' on category or KPI forms would also allow to set and change targets. The latter might be useful in case you ask your manager to manage goals within a department, for example
-
The security settings are additive - not restrictive. KPI managers would have full rights for all KPIs disregarding the settings, while other users would have rights only to KPIs which settings (or category settings) allow them so
-
The tool supports multi companies: so, make sure user company correlates with a KPI dashboard company.
KPI settings to process Odoo data
Any storable data
-
Preparing basis for KPIs' calculation is not a simple task. The good news is that such job should be done only once, while results are used forever
-
KPI Settings assume 3 levels of precision: (1) basic measurements - (2) KPI variables and constants - (3) KPI drag and drop formulas
-
A basic measurement is the core object used for retrieving actual KPI value from Odoo database, while KPI variables specify those. For example, 'total number of sales orders' should be a basic measurement, while narrower 'number of quotations of the sales team Europe' is recommended to be a precision of that basic measurement
-
Each basic measurement might have an unlimited number of linked KPI variables. KPI formulas might combine any number of variables, constants, and other KPIs with mathematical operators.
Python code measurements
-
'Python code' is the special type of basic measurements. This type requires technical knowledge but let you compute any sort of figures based on any Odoo data without restrictions
-
Such measurement might be any Python basic script with possibility of SQL queries (through using 'env.cr')
-
In calculations you may rely upon the special variables: 'period_start' (the first date of the period), 'period_end' (the last date of the period), 'period_company_id' - res.company object for which Odoo makes calculations at the moment (according to a KPI period under consideration)
-
Correct Python code assumes saving the value into the special variable 'result'.
Basic measurements
-
Basic measurements are not used for formulas, but they define how Odoo data should be calculated: count of records, sum, average, pure Python code. Basic measurements assume a number of settings
-
Model - an Odoo document type with which data set you work ('Sales Order', 'Task', etc.). Here you can rely on standard or custom objects (including created in the Odoo studio), Odoo reports
-
Date fields - define whether a document relates to a KPI period. For example, for tasks you might use 'create date'. It is possible to apply a few date fields (e.g. 'Opportunities opened and won in January 2021') or no date fields at all for global calculations
-
Filters - allow restrict set of records. Used for low-level filtering and then specified in KPI variables
-
Measure field - is required for calculation types 'Average' and 'Sum'. It defines which figure you use for calculations. For example, 'total amount' of Sales Analysis Report or 'work hours of tasks'
-
Company field - would be used to restrict calculation for a KPI period target company. Take into account that records without company stated would be used for all companies' KPI calculations.
KPI variables and constants
-
The key idea to distinct KPI variables from basic measurements is to simplify data preparation. You define 'total sales' once, and then unlimitedly use it for 'sales Europe', 'sales John Brown', 'website sales', etc.
-
Specify basic measurements through the Odoo built-in domain constructor, which let filter by any storable attributes. For instance, filter sale orders by state (only 'done'), sales person ('John Brown or Mike Green'), sales team, etc.
-
KPI constants are the special type of KPI variables used when data can not be retrieved from modules and/or when figures remain the same during the whole period. For example, 'total investments' or 'number of employees' are often frozen for a specific period
-
In a multi company environment KPI variables are applied globally or for each company. In the former case that variable is available for any company KPI formulas, while in the latter - only for specific one
-
Basic measurements of the type 'Execute Python code' can't be any more specified, since they do not relate to any records. Such measurements should have a single KPI variable linked.
Konfigurations- und Installationstipps für KPI Balanced Scorecard Odoo v.14
Scheduled jobs
To change the frequency of KPI targets' recalculation:
- Turn on the debug mode
- Go to the menu KPI > Configuration > Settings
- Find the button 'Configure cron job'
- Feel free to update the settings 'Execute Every' and 'Next Execution Date'. However, please do not make it too frequent (e.g. once in 5 minutes). Since the job is resource demanding, it require at least a few minutes to be fully and correctly finished.
Change frequency of KPIs re-calculatinon
Häufig gestellte Fragen zu KPI Balanced Scorecard Odoo v.14
Ich habe eine Basic Measurement angelegt, finde sie aber nicht im Formelassistenten.
Basic Measurements allein bilden keine Formel. Auch ohne weitere Filter legen Sie eine verknupfte Variable an; dann erscheint sie in der Liste fur die Formel.
Welche Daten eignen sich fur KPI? Hat das Modul eigene Daten?
Die App bringt kaum eigene Daten mit (außer KPI-Konstanten genau fur fehlende Werte) und keine Integrationen. Sie rechnet und baut Oberflachen aus vorhandenen Odoo-Daten. Beispiel: Anzahl Verkaufsauftrage eines Zeitraums aus der App Verkauf.
Das Modul ist universell und liest jedes Odoo-Modul, auch Kontensalden. Beispiel: Monatsgewinn aus Rechnungen (Journalbuchung).
Daten außerhalb von Odoo gehen, wenn sie uber ein Odoo-Modul angebunden sind. Beispiel: Google Analytics-Daten in Odoos PostgreSQL fur KPI.
Worin unterscheiden sich Basic Measurements und Measurements (Variables)?
Measurement (Variable) ist die Spezifikation einer Basismessung. Sie definieren 'Total Sales' einmal und nutzen es unbegrenzt fur 'Sales Europe', 'Sales John Brown', 'Website Sales' usw. mit extra Filtern.
Wie sind die Update-Richtlinien Ihrer Tools?
Laut den aktuellen Richtlinien des Odoo Apps Store:
- Ein fur Version 12.0 oder fruher gekauftes Modul gibt Zugang zu allen Versionen bis 12.0.
- Ab Version 13.0 muss jede Modulversion separat gekauft werden.
- Unabhangig von der Version berechtigt der Kauf zu allen Updates und Fehlerbehebungen innerhalb einer Hauptversion.
Das faOtools-Team steuert diese Richtlinien nicht. Fragen richten Sie bitte direkt an die Vertreter des Odoo Apps Store.
Wie installiere ich Ihre App auf Odoo.sh?
Der direkteste Weg ist der integrierte Ablauf des Odoo Stores:
1. Offnen Sie die Modulseite und klicken Sie auf Deploy on odoo.sh
2. Sie werden zu GitHub weitergeleitet. Melden Sie sich an und klicken Sie auf Create a new repo oder nutzen Sie ein vorhandenes. Das Repository muss privat sein. Apps unter OPL-1 durfen nicht offentlich gemacht werden. Legen Sie bei Bedarf ein neues Repo fur das Odoo.sh-Projekt an
3. Gehen Sie zu odoo.sh, klicken Sie auf Deploy, bestatigen Sie und klicken Sie auf Continue. Die Installation startet.
Damit wird die App auf dem Production-Branch installiert. Fur andere Branches oder Updates:
1. Laden Sie den Quellcode aus dem Odoo Store
2. Committen Sie das Modul in das GitHub-Repository. Keine App-Ordner/Dateien durfen in .gitignore stehen. Von odoo.sh erzeugte Repos ignorieren oft wichtige Pfade (z. B. /lib). Laden Sie alle Modulverzeichnisse und Dateien hoch
3. Deployen Sie den Ziel-Branch des odoo.sh-Projekts oder warten Sie auf den automatischen Build.
Wie installiere ich Ihre App auf meinem eigenen Server?
2. Starten Sie den Odoo-Server neu;
3. Schalten Sie den Entwicklermodus ein (technische Einstellungen);
4. Aktualisieren Sie die App-Liste (Apps-Menü);
5. Finden Sie die App und klicken Sie auf Activate/Install;
6. Folgen Sie den Hinweisen auf der App-Seite, falls vorhanden.
Ihre App hat Zusatzmodule. Kann ich sie spater kaufen?
Ja. Odoo legt alle Abhangigkeiten automatisch in den Warenkorb. SchlieBen Sie bereits gekaufte Tools aus, um nicht doppelt zu zahlen.
Ich habe Ihre App auf Odoo.sh bereitgestellt und sehe eine Warnung/einen Fehler in den Tests
Eine rote/orange Warnung beeinflusst die Funktionen der App nicht. Manchmal bestehen unsere Module die Standard-Automatiktests nicht, weil diese ein Verhalten erwarten, das unseren Zielen widerspricht. Zum Beispiel andern wir die Preisberechnung, wahrend die Odoo-Tests den Endpreis mit dem Standardalgorithmus vergleichen.
Prufen Sie zuerst die Funktionen der bereitgestellten Datenbank. Funktioniert alles?
Wenn Sie dennoch annehmen, dass die Warnung echte Funktionen betrifft, senden Sie uns die vollstandigen Installationsprotokolle und die vollstandige Liste der bereitgestellten Module (Kern und Drittanbieter).
Kann ich Ihre App direkt bei Ihnen kaufen?
Nein, wir vertreiben die Tools nur uber den offiziellen Odoo Apps Store.
Ich mochte einen Rabatt
Leider haben wir keine technischen Mittel fur individuelle Preise.
Kann ich die App auf meiner Odoo Online (SaaS)-Datenbank installieren?
Nein, Drittanbieter-Apps konnen nicht auf Odoo Online genutzt werden. Odoo SaaS blockiert das.
Ihr Tool hangt von anderen Apps ab. Muss ich diese kaufen?
Ja, das Tool benotigt alle als Abhangigkeit markierten Module. Der Preis auf der App-Seite enthalt bereits alle noetigen Abhangigkeiten.
Was kostet das Modul in US-Dollar? Warum hat sich der Preis geandert?
Die Preise unserer Module sind in Euro festgelegt. Der Odoo Store rechnet nach seinem internen Wechselkurs um. Der Preis in US-Dollar kann sich andern, wenn der Kurs aktualisiert wird.
Die Texte der App und Website in anderen Sprachen als Englisch werden KI-gestützt erstellt und an die offiziellen Odoo-Übersetzungen angeglichen. Wenn Sie einen Fehler entdecken, ein Uebersetzungs-Ticket senden und wir korrigieren es.
Fehlermeldung
Wenn Sie auf Fehler oder inkonsistentes Verhalten stoßen, zögern Sie nicht, uns zu kontaktieren. Wir garantieren eine Reparatur innerhalb von 60 Tagen nach dem Kauf und sind auch nach diesem Zeitraum stark daran interessiert, unsere Werkzeuge zu verbessern.
Sie benötigen keine Telefonnummer oder Kreditkarte, um mit uns Kontakt aufzunehmen. Sie sollten nur eine kurze E-Mail-Anmeldung durchführen, die nicht länger als 30 Sekunden dauert.
Bitte nehmen Sie moglichst viele Details in Ihre Anfrage auf: Screenshots, Odoo-Serverprotokolle, eine vollstandige Beschreibung zur Reproduktion Ihres Problems usw. Normalerweise dauert es einige Werktage, einen Arbeitsplan fur ein Problem zu erstellen (wenn ein Fehler bestatigt wird) oder Ihnen Hinweise zum weiteren Vorgehen zu geben (andernfalls).
Öffentliche Funktionsanfragen und Modulideen (kostenlose Entwicklung)
Wir sind stark motiviert, unsere Tools zu verbessern und wären für jedes Feedback dankbar. Wenn Ihre Anforderungen von öffentlichem Nutzen sind und effizient umgesetzt werden könnten, nimmt das Team diese in unsere To-Do-Liste auf.
Eine solche To-Do-Liste wird regelmäßig bearbeitet und erfordert keine zusätzlichen Gebühren. Obwohl wir keine Fristen und keinen endgültigen Entwurf versprechen können, könnte dies eine gute Möglichkeit sein, die gewünschten Funktionen ohne Investitionen und Risiken zu erhalten.
Sie benötigen keine Telefonnummer oder Kreditkarte, um mit uns Kontakt aufzunehmen. Sie sollten nur eine kurze E-Mail-Anmeldung durchführen, die nicht länger als 30 Sekunden dauert.
Das Werkzeug, um Odoo-Anhange in Ordnern zu strukturieren und mit Google Drive, OneDrive/SharePoint, Nextcloud/ownCloud, Dropbox, Amazon S3, Box und NAS zu synchronisieren. Dateimanager. DMS
Das Werkzeug zum bidirektionalen Sync von Odoo-Anhangen mit OneDrive
Das Werkzeug zum bidirektionalen Sync von Odoo-Anhangen mit Google Drive
Das Werkzeug, um Passworter in Odoo sicher gemeinsam zu halten. Geteilte Tresore
198€Das Werkzeug fur eine tiefe Wissensdatenbank intern und extern. KMS. Wiki-Revisionen
398€Das Werkzeug fur terminbasierte Dienste von der Buchung bis Verkauf und Bewertungen
Das Werkzeug, um Odoo aus Ihren KI-Chats per MCP zu steuern. Claude. Jede MCP-KI.
198€Das Werkzeug, um URL-Adressen von Odoo-Website-Seiten zu ubersetzen
38€