Skip to main content

Build 'Management Information System' Reports and Dashboards

Project description

Production/Stable License: AGPL-3 OCA/mis-builder Translate me on Weblate Try me on Runbot

This module allows you to build Management Information Systems dashboards. Such style of reports presents KPI in rows and time periods in columns. Reports mainly fetch data from account moves, but can also combine data coming from arbitrary Odoo models. Reports can be exported to PDF, Excel and they can be added to Odoo dashboards.

Table of contents

Installation

Your preferred way to install addons will work with MIS Builder.

An easy way to install it with all its dependencies is using pip:

  • pip install --pre odoo10-addon-mis_builder odoo-autodiscover

  • then restart Odoo, update the addons list in your database, and install the MIS Builder application.

Usage

To configure this module, you need to:

  • Go to Accounting > Configuration > MIS Reporting > MIS Report Templates where you can create report templates by defining KPI’s. KPI’s constitute the rows of your reports. Such report templates are time independent.

Sample report template
  • Then in Accounting > Reports > MIS Reporting > MIS Reports you can create report instance by binding the templates to time periods, hence defining the columns of your reports.

Sample report configuration
  • From the MIS Reports view, you can preview the report, add it to and Odoo dashboard, and export it to PDF or Excel.

Sample preview

Development

A typical extension is to provide a mechanism to filter reports on analytic dimensions or operational units. To implement this, you can override _get_additional_move_line_filter and _get_additional_filter to further filter move lines or queries based on a user selection. A typical use case could be to add an analytic account field on mis.report.instance, or even on mis.report.instance.period if you want different columns to show different analytic accounts.

Known issues / Roadmap

The mis_builder roadmap and known issues can be found on GitHub.

Changelog

10.0.3.3.0 (2018-11-16)

Features

  • Analytic account filters. On a report, an analytic account can be selected for filtering. The filter will be applied to move lines queries. A filter box is also available in the widget to let the user select the analytic account during report preview. (#15)

  • Control visibility of analytic filter combo box in widget. This is useful to hide the analytic filters on reports where they do not make sense, such as balance sheet reports. (#42)

  • Display analytic filters in the header of exported pdf and xls. (#44)

  • Replace the last old gtk icons with fontawesome icons. (#104)

  • Use active_test=False in AEP queries. This is important for reports involving inactive taxes. This should not negatively effect existing reports, because an accounting report must take into account all existing move lines even if they reference objects such as taxes, journals, accounts types that have been deactivated since their creation. (#107)

  • int(), float() and round() support for AccountingNone. (#108)

  • Allow referencing subkpis by name by writing kpi_x.subkpi_y in expressions. (#114)

  • Add an option to control the display of the start/end dates in the column headers. It is disabled by default (this is a change compared to previous behaviour). (#118)

  • Add evaluate method to mis.report. This is a simplified method to evaluate kpis of a report over a time period, without creating a mis.report.instance. (#123)

Upgrading from 3.2 (breaking changes)

If you use Actuals (alternative) data source in combination with analytic filters, the underlying model must now have an analytic_account_id field.

10.0.3.2.2 (2018-06-30)

  • [FIX] Fix bug in company_default_get call returning id instead of recordset (#103)

  • [IMP] add “hide always” style property to make hidden KPI’s (for KPI that serve as basis for other formulas, but do not need to be displayed). (#46)

10.0.3.2.1 (2018-05-29)

  • [FIX] Missing comparison operator for AccountingNone leading to errors in pbal computations (#93)

10.0.3.2.0 (2018-05-02)

  • [FIX] make subkpi ordering deterministic (#71)

  • [ADD] report instance level option to disable account expansion, enabling the creation of detailed templates while deferring the decision of rendering the details or not to the report instance (#74)

  • [ADD] pbal and nbal accounting expressions, to sum positive and negative balances respectively (ie ignoring accounts with negative, resp positive balances) (#86)

10.0.3.1.1 (2017-11-14)

New features:

  • [ADD] month and year relative periods, easier to use than date ranges for the most common case. (#2)

  • [ADD] multi-company consolidation support, with currency conversion (the conversion rate date is the end of the reporting period) (#7, #3)

  • [ADD] provide ref, datetime, dateutil, time, user in the evaluation context of move line domains; among other things, this allows using references to xml ids (such as account types or tax tags) when querying move lines (#26).

  • [ADD] extended account selectors: you can now select accounts using any domain on account.account, not only account codes balp[('user_type_id', '=', ref('account.data_account_type_receivable').id)] (#4).

  • [IMP] in the report instance configuration form, the filters are now grouped in a notebook page, this improves readability and extensibility (#39).

Bug fixes:

  • [FIX] fix error when saving periods in comparison mode on newly created (not yet saved) report instances. #50

  • [FIX] improve display of Base Date report instance view. #51

Upgrading from 3.0 (breaking changes):

  • Alternative move line data sources must have a company_id field.

10.0.3.0.4 (2017-10-14)

Bug fix:

  • [FIX] issue with initial balance rounding. #30

10.0.3.0.3 (2017-10-03)

Bug fix:

  • [FIX] fix error saving KPI on newly created reports. #18

10.0.3.0.2 (2017-10-01)

New features:

  • [ADD] Alternative move line source per report column. This makes mis buidler accounting expressions work on any model that has debit, credit, account_id and date fields. Provided you can expose, say, committed purchases, or your budget as a view with debit, credit and account_id, this opens up a lot of possibilities

  • [ADD] Comparison column source (more flexible than the previous, now deprecated, comparison mechanism). CAVEAT: there is no automated migration to the new mechanism.

  • [ADD] Sum column source, to create columns that add/subtract other columns.

  • [ADD] mis.kpi.data abstract model as a basis for manual KPI values supporting automatic ajustment to the reporting time period (the basis for budget item, but could also server other purposes, such as manually entering some KPI values, such as number of employee)

  • [ADD] mis_builder_budget module providing a new budget data source

  • [ADD] new “hide empty” style property

  • [IMP] new AEP method to get accounts involved in an expression (this is useful to find which KPI relate to a given P&L acount, to implement budget control)

  • [IMP] many UI improvements

  • [IMP] many code style improvements and some refactoring

  • [IMP] add the column date_from, date_to in expression evaluation context, as well as time, datetime and dateutil modules

Main bug fixes:

10.0.2.0.3 (unreleased)

  • [IMP] more robust behaviour in presence of missing expressions

  • [FIX] indent style

  • [FIX] local variable ‘ctx’ referenced before assignment when generating reports with no objects

  • [IMP] use fontawesome icons

  • [MIG] migrate to 10.0

  • [FIX] unicode error when exporting to Excel

  • [IMP] provide full access to mis builder style for group Adviser.

9.0.2.0.2 (2016-09-27)

  • [IMP] Add refresh button in mis report preview.

  • [IMP] Widget code changes to allow to add fields in the widget more easily.

9.0.2.0.1 (2016-05-26)

  • [IMP] remove unused argument in declare_and_compute_period() for a cleaner API. This is a breaking API changing merged in urgency before it is used by other modules.

9.0.2.0.0 (2016-05-24)

Part of the work for this release has been done at the Sorrento sprint April 26-29, 2016. The rest (ie a major refactoring) has been done in the weeks after.

  • [IMP] hide button box in edit mode on the report instance settings form

  • [FIX] Fix sum aggregation of non-stored fields (https://github.com/OCA/account-financial-reporting/issues/178)

  • [IMP] There is now a default style at the report level

  • [CHG] Number display properties (rounding, prefix, suffix, factor) are now defined in styles

  • [CHG] Percentage difference are rounded to 1 digit instead of the kpi’s rounding, as the KPI rounding does not make sense in this case

  • [CHG] The divider suffix (k, M, etc) is not inserted automatically anymore because it is inconsistent when working with prefixes; you need to add it manually in the suffix

  • [IMP] AccountingExpressionProcessor now supports ‘balu’ expressions to obtain the unallocated profit/loss of previous fiscal years; get_unallocated_pl is the corresponding convenience method

  • [IMP] AccountingExpressionProcessor now has easy methods to obtain balances by account: get_balances_initial, get_balances_end, get_balances_variation

  • [IMP] there is now an auto-expand feature to automatically display a detail by account for selected kpis

  • [IMP] the kpi and period lists are now manipulated through forms instead of directly in the tree views

  • [IMP] it is now possible to create a report through a wizard, such reports are deemed temporary and available through a “Last Reports Generated” menu, they are garbaged collected automatically, unless saved permanently, which can be done using a Save button

  • [IMP] there is now a beginner mode to configure simple reports with only one period

  • [IMP] it is now easier to configure periods with fixed start/end dates

  • [IMP] the new sub-kpi mechanism allows the creation of columns with multiple values, or columns with different values

  • [IMP] thanks to the new style model, the Excel export is now styled

  • [IMP] a new style model is now used to centralize style configuration

  • [FIX] use =like instead of like to search for accounts, because the % are added by the user in the expressions

  • [FIX] Correctly compute the initial balance of income and expense account based on the start of the fiscal year

  • [IMP] Support date ranges (from OCA/server-tools/date_range) as a more flexible alternative to fiscal periods

  • v9 migration: fiscal periods are removed, account charts are removed, consolidation accounts have been removed

8.0.1.0.0 (2016-04-27)

8.0.0.2.0

Pre-history. Or rather, you need to look at the git log.

Bug Tracker

Bugs are tracked on GitHub Issues. In case of trouble, please check there if your issue has already been reported. If you spotted it first, help us smashing it by providing a detailed and welcomed feedback.

Do not contact contributors directly about support or help with technical issues.

Credits

Authors

  • ACSONE SA/NV

Contributors

Maintainers

This module is maintained by the OCA.

Odoo Community Association

OCA, or the Odoo Community Association, is a nonprofit organization whose mission is to support the collaborative development of Odoo features and promote its widespread use.

Current maintainer:

sbidoul

This module is part of the OCA/mis-builder project on GitHub.

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page