KPI Balanced Scorecard v.18
The tool to set up KPI targets and control their fulfillment by periods. KPI dashboards. Dashboard designer. KPI charts
The app introduces a 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
The scorecard is not just a dashboard, but it is a 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. The 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, by categories, and by tags
Consider only those KPIs which are of interest: for example, only sales-related or of a definite user. Hierarchy allows highlighting targets with indicative padding for an 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
-
Navigate between various KPI categories and future/past KPI periods in a few clicks from the same Odoo dashboard
-
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 also allows also speed calculations up
-
Control KPI historical values by periods. The graph and history table is available for each target line
-
KPI admins access the special KPI trends interface to analyze KPI targets by custom period types. Build bar and line charts. Filter by KPI categories or KPIs. Show only target or actual values
-
The app automatically calculates period types to compare in the report. Just define historical tolerance: e.g 2-days tolerance - for quarterly periods (90-92 days), 3-days - for months (28-31 days), etc.
-
Export scorecards as an Excel table if you need
-
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 the right order with the correct operators
-
Odoo would automatically retrieve data from a database according to a defined parts order for a specified period
-
Formulas 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 a prefix and a 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 the length between the period start and today (if today is before the 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'. The group 'KPI Management - KPI Users' is allowed to observe the KPI interface and manage shared KPI settings
-
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 lets users only observe shared KPIs
-
The section 'Edit rights' on category or KPI forms will also allow us 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 will have full rights for all KPIs disregarding the settings, while KPI users will have rights only to KPIs which settings (or category settings) allow them so
-
The tool supports multi companies: so, make sure the user company correlates with a KPI dashboard company.
KPI settings to process Odoo data
Any storable data
-
Preparing the basis for KPIs' calculation is not a simple task. The good news is that such a 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
-
Basic measurement is the core object used for retrieving actual KPI values from the 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 a special type of basic measurement. This type requires technical knowledge but lets you compute any sort of figures based on any Odoo data without restrictions
-
Such measurement might be any Python basic script with the 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, and pure Python code. Basic measurements assume a number of settings
-
Model - an Odoo document type with which data set you to work ('Sales Order', 'Task', etc.). Here you can rely on standard or custom objects (including those 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 a company will be used for all companies' KPI calculations.
KPI variables and constants
-
The key idea to distinguishing 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 lets filter by any storable attributes. For instance, filter sale orders by state (only 'done'), the salesperson ('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 a 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.
Съвети за конфигурация и инсталация за KPI Balanced Scorecard Odoo v.18
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
Често задавани въпроси за KPI Balanced Scorecard Odoo v.18
Създадох Basic Measurement, но не го намирам в съветника за формули.
Basic Measurements сами по себе не се ползват за формула. Дори да не искате още филтри към Basic Measurement, създайте Variable, свързан с него. Тогава този Variable ще се появи в списъка за създаване на формула.
Какви данни могат да се използват за KPI. Модулът има ли собствени данни?
Самото приложение не въвежда свои данни (с изключение на KPI константите, които точно целят да приложат липсващите данни) или интеграции. Приложението изчислява и подготвя интерфейси въз основа на съществуващите данни на Odoo. Например броят поръчки за продажба за даден период може да се вземе от приложението Sales.
Модулът е универсален и може да взема данни от всеки модул на Odoo, включително салдата по сметки. Например общата печалба за месец може да се изчисли въз основа на фактурите (счетоводен запис).
Можете да вземете данни и от източник извън Odoo, като го свържете с модул на Odoo. Например, ако в Odoo PostgreSQL имате данни от Google Analytics, те могат да се ползват за KPI.
Каква е разликата между Basic Measurements и Measurements (Variables)?
Measurement (Variable) — уточнение на базово измерване. Идеята е да се опрости подготовката на данни. Дефинирате 'Total Sales' веднъж и го ползвате неограничено за 'Sales Europe', 'Sales John Brown', 'Website Sales' и т.н., като добавяте допълнителни филтри.
Какви са политиките за обновяване на вашите инструменти?
Според действащите правила на Odoo Apps Store:
- Всеки модул, купен за версия 12.0 и по-стара, дава достъп до всички версии до 12.0.
- От версия 13.0 всяка версия на модула се купува отделно.
- Независимо от версията покупката дава право на всички обновления и поправки в рамките на основната версия.
Имайте предвид, че екипът на faOtools не контролира тези правила. За въпроси се обръщайте директно към представителите на Odoo Apps Store.
Как да инсталирам вашето приложение в Odoo.sh?
Най-прекият подход е да използвате вградения работен поток на магазина Odoo:
1. Отворете страницата на модула и щракнете бутона Deploy on odoo.sh
2. След това ще бъдете пренасочени към страницата на GitHub. Влезте в профила си, след което щракнете 'Create a new repo' или използвайте съществуващо. Уверете се, че хранилището е частно. Не е позволено публикуването на приложения под лиценз OPL-1. Ако е нужно, създайте ново repo за проекта Odoo.sh
3. След това отидете в odoo.sh и щракнете бутона Deploy. В изскачащия прозорец потвърдете решението и щракнете 'Continue.' Това стартира инсталацията.
Тези стъпки ще инсталират приложението в продукционния клон на проекта. Ако искате да разположите приложенията в други клонове или да обновите модула, направете следното:
1. Качете изходния код на приложението от магазина Odoo
2. Направете commit на модула в необходимото GitHub хранилище. Уверете се, че никои папки/файлове на приложението не се игнорират (т.е. не са в .gitignore на repo). Хранилищата се създават автоматично от odoo.sh и по подразбиране може да включват важни елементи (напр. /lib). Качете всички директории, поддиректории и файлове на модула без изключения
3. Разположете целевия клон на проекта odoo.sh или, ако настройките предполагат това, изчакайте да се изгради автоматично.
Как да инсталирам вашето приложение на собствен сървър?
2. Рестартирайте сървъра на Odoo;
3. Включете режим за разработчици (технически настройки);
4. Обновете списъка с приложения (менюто с приложения);
5. Намерете приложението и натиснете „Activate“/„Install“;
6. Следвайте указанията на страницата на приложението, ако има такива.
Забелязах, че приложението ви има допълнителни добавки. Мога ли да ги купя по-късно?
Да, разбира се. Едновременно Odoo автоматично добавя всички зависимости в количката, затова трябва да изключите вече купените инструменти, за да избегнете двойно плащане.
Инсталирах приложението ви в Odoo.sh и в тестовете виждам предупреждение/грешка
Червено/оранжево предупреждение не влияе на функциите на приложението. За съжаление понякога модулите ни не минават стандартните автоматични тестове, защото те очакват поведение в конфликт с целите на приложението. Например променяме изчислението на цената, а тестовете на стандартния модул Odoo сравняват крайната цена със стандартен алгоритъм.
Първо проверете функциите на разгънатата база. Всичко работи ли коректно?
Ако все пак смятате, че предупреждението влияе на реални функции, свържете се с нас и изпратете пълните регистрационни файлове от инсталацията и пълния списък на разгънатите модули (включително ядро и трети страни).
Мога ли да купя приложението директно от вашата фирма?
Не, разпространяваме инструментите само чрез официалния магазин за приложения Odoo.
Бих искал да получа отстъпка
За съжаление нямаме техническа възможност да предложим индивидуални цени.
Мога ли да инсталирам приложението в моята база Odoo Online (SaaS)?
Не, приложения на трети страни не могат да се ползват в Odoo Online. За съжаление Odoo SaaS блокира тази възможност.
Вашият инструмент зависи от други приложения. Трябва ли да ги купя?
Да, инструментът изисква всички модули, посочени в зависимостите, за да работи правилно. Цената на страницата на приложението вече включва всички необходими зависимости.
Каква е цената на модула в щатски долари? Защо се промени?
Цената на нашите модули е в евро. Магазинът Odoo превалутира цените по вътрешния си курс. Затова цената в щатски долари може да се промени при обновяване на курса.
Текстовете на приложението и уебсайта на езици, различни от английски, са с помощта на ИИ и са съгласувани с официалните преводи на Odoo. Ако забележите грешка, изпратете тикет за коректност на преводите и ще го поправим.
Демонстрационни бази Odoo (прегледи наживо)
За това приложение можем да предоставим безплатна персонализирана демо база.
За да се свържете с нас не са нужни телефонен номер или кредитна карта. Достатъчна е кратка регистрация по имейл, която не отнема повече от 30 секунди.
По ваше искане ще подготвим индивидуална база за преглед наживо, където около две седмици можете да правите тестове и да проверявате предположения.
Докладване на грешки
Ако срещнете грешки или непоследователно поведение, свържете се с нас. Гарантираме поправки до 60 дни от покупката и сме силно заинтересовани да подобряваме инструментите и след този срок.
За да се свържете с нас не са нужни телефонен номер или кредитна карта. Достатъчна е кратка регистрация по имейл, която не отнема повече от 30 секунди.
Включете възможно най-много подробности в заявката: екранни снимки, дневници на Odoo сървъра, пълно описание как да възпроизведете проблема и т.н. Обикновено са нужни няколко работни дни, за да се подготви работен план (ако грешката е потвърдена) или насоки какво да се направи (в противен случай).
Публични заявки за функции и идеи за модули (безплатна разработка)
Силно сме мотивирани да подобряваме инструментите си и ще сме благодарни за всяка обратна връзка. Ако изискванията ви са от обществена полза и могат да се реализират ефективно, екипът ще ги включи в нашия списък със задачи.
Такъв списък със задачи се обработва редовно и не предполага допълнителни такси. Макар да не можем да обещаем срокове и окончателен дизайн, това може да е добър начин да получите желаните функции без инвестиции и рискове.
За да се свържете с нас не са нужни телефонен номер или кредитна карта. Достатъчна е кратка регистрация по имейл, която не отнема повече от 30 секунди.
18.0.1.1.8
- Проблемът с непреведените предупреждения е коригиран.
18.0.1.1.7
- Kanban изгледите са адаптирани към новите XML принципи на Odoo 18.
- Лентата Archived за неактивни записи е добавена към формулярните изгледи на KPI, променливи, основни измервания, константи, категории и етикети.
18.0.1.1.6
- Приложението е публикувано за версия 18.
17.0.1.1.6
- Многофирменият достъп за етикети е коригиран.
- Проблемът с липсващата първа лентова колона е коригиран.
17.0.1.1.5
- Зареждането на KPI графиките е оптимизирано да преизползва същия canvas.
The tool to flexibly structure Odoo attachments in folders and synchronize directories with cloud clients: Google Drive, OneDrive/SharePoint, Nextcloud/ownCloud, Dropbox, Amazon S3, Box, and NAS. DMS. File Manager. Document management system
The tool to automatically synchronize Odoo attachments with OneDrive files in both ways
The tool to automatically synchronize Odoo attachments with Google Drive files in both ways
The tool to build a deep and structured knowledge base for internal and external use. Knowledge System. KMS. Wiki-like revisions.
398€The tool for time-based service management from booking appointments to sales and reviews
The tool to manage your Odoo from your favorite AI chats through MCP. Claude. Any MCP-supporting AI.
198€The tool to translate URL addresses of Odoo website pages
38€The tool to combine different Odoo events in a few configurable super calendars