Skip to content

Commit

Permalink
Merge PR #709 into 16.0
Browse files Browse the repository at this point in the history
Signed-off-by ecino
  • Loading branch information
OCA-git-bot committed Jan 18, 2024
2 parents ff2e025 + dd34f2c commit e208e8f
Show file tree
Hide file tree
Showing 18 changed files with 1,539 additions and 0 deletions.
113 changes: 113 additions & 0 deletions l10n_ch_mis_reports/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,113 @@
=========================
Switzerland - MIS reports
=========================

.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
:target: https://odoo-community.org/page/development-status
:alt: Beta
.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
:alt: License: AGPL-3
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fl10n--switzerland-lightgray.png?logo=github
:target: https://github.com/OCA/l10n-switzerland/tree/14.0/l10n_ch_mis_reports
:alt: OCA/l10n-switzerland
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
:target: https://translation.odoo-community.org/projects/l10n-switzerland-14-0/l10n-switzerland-14-0-l10n_ch_mis_reports
:alt: Translate me on Weblate
.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png
:target: https://runbot.odoo-community.org/runbot/125/14.0
:alt: Try me on Runbot

|badge1| |badge2| |badge3| |badge4| |badge5|

This modules provides MIS Builder Report templates for the Switzerland
P&L and Balance Sheet according to the official models (STERCHI).

**Table of contents**

.. contents::
:local:

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:

* Suisse - Compte de résultat (Profit and loss account)
* Suisse – Bilan (Balance sheet)

To obtain correct results, the account codes prefixes must match the official
Switzerland chart of account (STERCHI).

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
======================

* Provides a MIS Builder Report template for the Switzerland VAT Declaration.
* Rename reports in english as base language to then be translated
* Translate report names in german

Bug Tracker
===========

Bugs are tracked on `GitHub Issues <https://github.com/OCA/l10n-switzerland/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 <https://github.com/OCA/l10n-switzerland/issues/new?body=module:%20l10n_ch_mis_reports%0Aversion:%2014.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.

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

Credits
=======

Authors
~~~~~~~

* Camptocamp

Contributors
~~~~~~~~~~~~

* Frédéric Clementi <frederic.clementi@camptocamp.com>
* Mykhailo Panarin <m.panarin@mobilunity.com>

Maintainers
~~~~~~~~~~~

This module is maintained by the OCA.

.. image:: https://odoo-community.org/logo.png
:alt: Odoo Community Association
:target: https://odoo-community.org

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.

This module is part of the `OCA/l10n-switzerland <https://github.com/OCA/l10n-switzerland/tree/14.0/l10n_ch_mis_reports>`_ project on GitHub.

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
2 changes: 2 additions & 0 deletions l10n_ch_mis_reports/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Copyright 2018 Camptocamp SA
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl)
24 changes: 24 additions & 0 deletions l10n_ch_mis_reports/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Copyright 2018 Camptocamp SA
# Copyright 2015 Agile Business Group
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).

{
"name": "Switzerland - MIS reports",
"summary": "Specific MIS reports for switzerland localization",
"version": "16.0.1.0.0",
"author": "Camptocamp,Odoo Community Association (OCA)",
"category": "Localization",
"website": "https://github.com/OCA/l10n-switzerland",
"license": "AGPL-3",
"depends": [
"l10n_ch",
"mis_builder",
"mis_builder_budget",
],
"data": [
"data/mis_report_style.xml",
"data/mis_report.xml",
"data/mis_report_kpi_pl.xml",
"data/mis_report_kpi_bs.xml",
],
}
10 changes: 10 additions & 0 deletions l10n_ch_mis_reports/data/mis_report.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<odoo noupdate="1">
<record id="mis_report_bs" model="mis.report">
<field name="name">Suisse - Bilan</field>
<field name="style_id" ref="style_default" />
</record>
<record id="mis_report_pl" model="mis.report">
<field name="name">Suisse - Compte de résultat</field>
<field name="style_id" ref="style_default" />
</record>
</odoo>
Loading

0 comments on commit e208e8f

Please sign in to comment.