-
-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by tv-openbig
- Loading branch information
Showing
10 changed files
with
2,206 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg | ||
:alt: License: AGPL-3 | ||
|
||
=================== | ||
German MIS reports | ||
=================== | ||
|
||
This modules provides MIS Builder Report templates for the German | ||
P&L and Balance Sheet according to the module l10n_de_skr04. | ||
|
||
Installation | ||
============ | ||
|
||
The normal Odoo module installation procedure applies. | ||
|
||
This module depends on the mis_builder module which can | ||
be found on apps.odoo.com or the OCA/account-financial-reporting | ||
github repository. | ||
|
||
Configuration | ||
============= | ||
|
||
To configure this module, you need to go to | ||
Accounting > Reporting > MIS Reports and create report instance | ||
according to the desired time periods and using one of the following | ||
templates provided by this module: | ||
|
||
* German Profit & Loss | ||
* German Balance Sheet | ||
|
||
To obtain correct results, the account codes prefixes must match the official | ||
German chart of account. | ||
|
||
|
||
Usage | ||
===== | ||
|
||
To use this module, you need to go to | ||
Accounting > Reporting > MIS Reports and use the buttons | ||
available on the previously configured reports such as preview, | ||
export, add to dashboard. | ||
|
||
|
||
Known issues / Roadmap | ||
====================== | ||
|
||
N/A | ||
|
||
Bug Tracker | ||
=========== | ||
|
||
Bugs are tracked on `GitHub Issues <https://github.com/OCA/l10n-germany/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 | ||
`here <https://github.com/OCA/l10n-germany/issues/new?body=module:%20l10n_be_mis_reports%0Aversion:%2010.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_. | ||
|
||
Credits | ||
======= | ||
|
||
Contributors | ||
------------ | ||
|
||
* Thorsten Vocks <[email protected]> | ||
* Stéphane Bidoul at ACSONE <[email protected]> | ||
* Virgine Dewulf <[email protected]> | ||
|
||
Maintainer | ||
---------- | ||
|
||
.. image:: http://odoo-community.org/logo.png | ||
:alt: Odoo Community Association | ||
:target: http://odoo-community.org | ||
|
||
This module is maintained by the OCA. | ||
|
||
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. | ||
|
||
To contribute to this module, please visit http://odoo-community.org. |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# Copyright 2015-2018 ACSONE SA/NV | ||
# Copyright 2019 BIG-Cosnulting GmbH | ||
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). | ||
{ | ||
"name": "German MIS Builder templates", | ||
"summary": """ | ||
MIS Builder templates for the German P&L | ||
and Balance Sheets (SKR04)""", | ||
"author": "OpenBIG.org," "ACSONE SA/NV," "Odoo Community Association (OCA)", | ||
"website": "https://github.com/OCA/l10n-germany", | ||
"category": "Reporting", | ||
"version": "15.0.1.0.0", | ||
"license": "AGPL-3", | ||
"depends": [ | ||
"mis_builder", # OCA/account-financial-reporting | ||
"l10n_de_skr04", | ||
], | ||
"data": [ | ||
"data/mis_report_styles.xml", | ||
"data/mis_report_pl.xml", | ||
"data/mis_report_bs.xml", | ||
], | ||
"installable": True, | ||
} |
Oops, something went wrong.