Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[10.0][add][l10n_es_mis_report_trial_balance] #789

80 changes: 80 additions & 0 deletions l10n_es_mis_report_trial_balance/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg
:alt: License: AGPL-3

=============================================================
Plantillas MIS Builder para Informe de Sumas y Saldos Español
=============================================================

Incluye las siguientes plantillas para el motor de informes provisto
por el módulo *mis_builder*:

* Balance de Sumas y Saldos PYMEs (PGCE 2008)
* Balance de Sumas y Saldos abreviado (PGCE 2008)
* Balance de Sumas y Saldos normal (PGCE 2008)


Permite mostrar el Balance de Sumas y Saldos usando la jerarquía del PGCE.


Instalación
===========
Este módulo depende del módulo 'l10n_es_mis_report' y del 'mis_builder' que
puede obtenerse en https://apps.odoo.com, o bien en https://github.com/OCA/mis-builder.

Configuración
=============

* Acceder a *Contabilidad > Informes > MIS Reports* y crear un informe,
indicando los periodos deseados, y usando una de las plantillas
proporcionadas por este módulo.

* Por defecto en los informes se desglosarán todas las cuentas. Puede
deshabilitar el desglose de cuentas al crear el informe.

El informe sólamente considera las cuentas numeradas de acuerdo con el
formato establecido por el PGCE.

.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas
:alt: Try me on Runbot
:target: https://runbot.odoo-community.org/runbot/119/10.0


Incidencias
===========

Bugs are tracked on `GitHub Issues <https://github.com/OCA/l10n-belgium/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-spain/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**>`_.


Problemas conocidos / Hoja de ruta
==================================

* A partir de la versión 11.0 este módulo desaparece, y deberá usarse el módulo
'account_financial_report' disponible en https://github.com/OCA/account-financial-reporting


Créditos
========

Contribuidores
--------------

* Jordi Ballester (EFICENT) <[email protected]>


Maintainer
----------

.. image:: http://odoo-community.org/logo.png
:alt: Odoo Community Association
:target: https://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 https://odoo-community.org.
1 change: 1 addition & 0 deletions l10n_es_mis_report_trial_balance/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# -*- coding: utf-8 -*-
26 changes: 26 additions & 0 deletions l10n_es_mis_report_trial_balance/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# -*- coding: utf-8 -*-
# Copyright 2017 Eficent Business and IT Consulting Services, S.L.
# <[email protected]>
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl

{
'name': 'Plantillas MIS Builder para Informe de Sumas y Saldos',
'author': 'Eficent,'
'Odoo Community Association (OCA)',
'website': 'https://github.com/OCA/l10n-spain',
'category': 'Reporting',
'version': '10.0.3.0.0',
'license': 'AGPL-3',
'depends': [
'l10n_es_mis_report', # OCA/account-financial-reporting
],
'data': [
'data/mis_report_trial_balance_full.xml',
'data/mis_report_trial_balance_full_subkpi.xml',
'data/mis_report_trial_balance_pymes.xml',
'data/mis_report_trial_balance_pymes_subkpi.xml',
'data/mis_report_trial_balance_asoc.xml',
'data/mis_report_trial_balance_asoc_subkpi.xml',
],
'installable': True,
}
9,898 changes: 9,898 additions & 0 deletions l10n_es_mis_report_trial_balance/data/mis_report_trial_balance_asoc.xml

Large diffs are not rendered by default.

16,780 changes: 16,780 additions & 0 deletions l10n_es_mis_report_trial_balance/data/mis_report_trial_balance_asoc_subkpi.xml

Large diffs are not rendered by default.

10,734 changes: 10,734 additions & 0 deletions l10n_es_mis_report_trial_balance/data/mis_report_trial_balance_full.xml

Large diffs are not rendered by default.

18,230 changes: 18,230 additions & 0 deletions l10n_es_mis_report_trial_balance/data/mis_report_trial_balance_full_subkpi.xml

Large diffs are not rendered by default.

9,256 changes: 9,256 additions & 0 deletions l10n_es_mis_report_trial_balance/data/mis_report_trial_balance_pymes.xml

Large diffs are not rendered by default.

15,755 changes: 15,755 additions & 0 deletions l10n_es_mis_report_trial_balance/data/mis_report_trial_balance_pymes_subkpi.xml

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
__import__('pkg_resources').declare_namespace(__name__)
6 changes: 6 additions & 0 deletions setup/l10n_es_mis_report_trial_balance/setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import setuptools

setuptools.setup(
setup_requires=['setuptools-odoo'],
odoo_addon=True,
)