Skip to content

Commit

Permalink
Merge 04c5683 into 49157e5
Browse files Browse the repository at this point in the history
  • Loading branch information
tv-openbig committed Apr 16, 2019
2 parents 49157e5 + 04c5683 commit 9ad4886
Show file tree
Hide file tree
Showing 9 changed files with 2,706 additions and 0 deletions.
78 changes: 78 additions & 0 deletions l10n_de_skr04_mis_reports/README.rst
@@ -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 <thorsten.vocks@openbig.org>
* Stéphane Bidoul at ACSONE <stephane.bidoul@acsone.eu>
* Virgine Dewulf <virginie@coopiteasy.be>

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.
25 changes: 25 additions & 0 deletions l10n_de_skr04_mis_reports/__manifest__.py
@@ -0,0 +1,25 @@
# -*- coding: utf-8 -*-
# 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': '11.0.1.1.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,
}

0 comments on commit 9ad4886

Please sign in to comment.