Skip to content
Snippets Groups Projects
README.rst 998 B
Newer Older
Accounting reports
==================

Improve accounting reports Odoo provides by default.

Some other modules rely on this one (such as ``general_ledger``,
``trial_balance``).

This module hides some accounting menus the use of which no longer makes sense
when this module is available.
Houzefa Abbasbhay's avatar
Houzefa Abbasbhay committed

This module adds:

    * Account consultation.
    * Accounting entries: Add a balance which is simply debit - credit.
    * Invoices: "Paid amount" field.


Configuration
-------------

Account consultation relies on an Odoo report that has to be set up as follows:

    * Model (``model``): ``account.move.line``.

    * Technical name (``report_name``): ``account_report.report_account_statement``.

    * Parser (``parser``): ``account_report.reports.account_statement.Parser``.
      Optional; provides ``debit_sum``, ``credit_sum``, ``balance_sum``.
szeka.wong's avatar
szeka.wong committed


TODO: Migration odoo 11
-----------------------

Replace the use of odoo.report.report_sxw to inject debit, credit and balance totals in the report.