Skip to content

Commit

Permalink
Merge PR OCA#45 into 12.0
Browse files Browse the repository at this point in the history
Signed-off-by max3903
  • Loading branch information
OCA-git-bot committed Nov 22, 2019
2 parents eeb1cb5 + ccb65f9 commit 81626ab
Show file tree
Hide file tree
Showing 15 changed files with 2,377 additions and 0 deletions.
76 changes: 76 additions & 0 deletions l10n_us_gaap_mis_report/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
.. image:: https://img.shields.io/badge/license-AGPL--3-blue.png
:target: https://www.gnu.org/licenses/agpl
:alt: License: AGPL-3

======================================================
United States Basic GAAP Chart of Accounts MIS Reports
======================================================

Includes the following templates for the *mis_builder* module.

* US Balance Sheet
* US Income Statement

The templates are based on the Chart of Accounts provided by the module
*l10n_us_gaap*.

This module contains in the 'docs' folder a sample Income Statement and
Balance Sheet with the full drill down to individual accounts.


Installation
============

This module depends on:

* The module *mis_builder* that can be obtained in
https://apps.odoo.com, or https://github.com/OCA/mis-builder.


Configuration
=============

* Go to *Invoicing > Reporting > MIS Reports* and create a new report,
indicating the required periods, and using one of the templates provided
by this module.

If you create new accounts, make sure that they fall into the right account
group, and they will then be displayed correctly in the MIS Reports.

.. 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/12.0

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

Bugs are tracked on `GitHub Issues
<https://github.com/OCA/l10n-usa/issues>`_. In case of trouble, please
check there if your issue has already been reported. If you spotted it first,
help us smash it by providing detailed and welcomed feedback.

Credits
=======

Contributors
------------

* Eficent Business and IT Consulting Services, S.L. <https://www.eficent.com>

* Jordi Ballester Alomar <[email protected]>
* Miquel Raïch <[email protected]>

Maintainer
----------

.. image:: https://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.
Empty file.
24 changes: 24 additions & 0 deletions l10n_us_gaap_mis_report/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Copyright 2018 Eficent Business and IT Consulting Services, S.L.
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl

{
'name': 'MIS Builder Templates for US Chart of Accounts',
'author': 'Eficent,'
'Odoo Community Association (OCA)',
'maintainers': ['jbeficent'],
'website': 'https://github.com/OCA/l10n-usa',
'category': 'Reporting',
'version': '12.0.1.0.0',
'license': 'AGPL-3',
'depends': [
'mis_builder', # In OCA/mis-builder
'l10n_us_gaap',
],
'data': [
'data/mis_report_styles.xml',
'data/mis_report_balance_sheet.xml',
'data/mis_report_income_statement.xml',
],
'installable': True,
'development_status': 'Production/Stable',
}
1,112 changes: 1,112 additions & 0 deletions l10n_us_gaap_mis_report/data/mis_report_balance_sheet.xml

Large diffs are not rendered by default.

378 changes: 378 additions & 0 deletions l10n_us_gaap_mis_report/data/mis_report_income_statement.xml

Large diffs are not rendered by default.

122 changes: 122 additions & 0 deletions l10n_us_gaap_mis_report/data/mis_report_styles.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,122 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright 2017 Eficent Business and IT Consulting Services, S.L.
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). -->
<odoo>
<data>

<record id="mis_report_style_l10n_us_gaap_base" model="mis.report.style">
<field name="name">l10n_us_gaap base</field>
<field name="dp_inherit" eval="0"/>
<field name="dp">2</field>
</record>

<record id="mis_report_style_l10n_us_gaap_l1" model="mis.report.style">
<field name="name">l10n_us_gaap l1</field>
<field name="background_color_inherit" eval="0"/>
<field name="background_color">#ffa500</field>
<field name="font_weight_inherit" eval="0"/>
<field name="font_weight">bold</field>
</record>

<record id="mis_report_style_l10n_us_gaap_l1i" model="mis.report.style">
<field name="name">l10n_us_gaap l1i</field>
<field name="background_color_inherit" eval="0"/>
<field name="background_color">#ffa500</field>
<field name="font_weight_inherit" eval="0"/>
<field name="font_weight">bold</field>
<field name="font_style_inherit" eval="0"/>
<field name="font_style">italic</field>
</record>

<record id="mis_report_style_l10n_us_gaap_l2" model="mis.report.style">
<field name="name">l10n_us_gaap l2</field>
<field name="font_weight_inherit" eval="0"/>
<field name="font_weight">bold</field>
<field name="hide_empty_inherit" eval="0"/>
<field name="hide_empty" eval="1"/>
</record>

<record id="mis_report_style_l10n_us_gaap_l2i" model="mis.report.style">
<field name="name">l10n_us_gaap l2i</field>
<field name="font_weight_inherit" eval="0"/>
<field name="font_weight">bold</field>
<field name="font_style_inherit" eval="0"/>
<field name="font_style">italic</field>
<field name="hide_empty_inherit" eval="0"/>
<field name="hide_empty" eval="1"/>
</record>

<record id="mis_report_style_l10n_us_gaap_l3" model="mis.report.style">
<field name="name">l10n_us_gaap l3</field>
<field name="indent_level_inherit" eval="0"/>
<field name="indent_level">1</field>
<field name="hide_empty_inherit" eval="0"/>
<field name="hide_empty" eval="1"/>
</record>

<record id="mis_report_style_l10n_us_gaap_l3i" model="mis.report.style">
<field name="name">l10n_us_gaap l3i</field>
<field name="indent_level_inherit" eval="0"/>
<field name="indent_level">1</field>
<field name="font_style_inherit" eval="0"/>
<field name="font_style">italic</field>
<field name="hide_empty_inherit" eval="0"/>
<field name="hide_empty" eval="1"/>
</record>

<record id="mis_report_style_l10n_us_gaap_l4" model="mis.report.style">
<field name="name">l10n_us_gaap l4</field>
<field name="indent_level_inherit" eval="0"/>
<field name="indent_level">2</field>
<field name="hide_empty_inherit" eval="0"/>
<field name="hide_empty" eval="1"/>
</record>

<record id="mis_report_style_l10n_us_gaap_l4i" model="mis.report.style">
<field name="name">l10n_us_gaap l4i</field>
<field name="indent_level_inherit" eval="0"/>
<field name="indent_level">2</field>
<field name="font_style_inherit" eval="0"/>
<field name="font_style">italic</field>
<field name="hide_empty_inherit" eval="0"/>
<field name="hide_empty" eval="1"/>
</record>

<record id="mis_report_style_l10n_us_gaap_l5" model="mis.report.style">
<field name="name">l10n_us_gaap l5</field>
<field name="indent_level_inherit" eval="0"/>
<field name="indent_level">3</field>
<field name="hide_empty_inherit" eval="0"/>
<field name="hide_empty" eval="1"/>
</record>

<record id="mis_report_style_l10n_us_gaap_l5i" model="mis.report.style">
<field name="name">l10n_us_gaap l5i</field>
<field name="indent_level_inherit" eval="0"/>
<field name="indent_level">3</field>
<field name="font_style_inherit" eval="0"/>
<field name="font_style">italic</field>
<field name="hide_empty_inherit" eval="0"/>
<field name="hide_empty" eval="1"/>
</record>

<record id="mis_report_style_l10n_us_gaap_l6" model="mis.report.style">
<field name="name">l10n_us_gaap l6</field>
<field name="indent_level_inherit" eval="0"/>
<field name="indent_level">4</field>
<field name="hide_empty_inherit" eval="0"/>
<field name="hide_empty" eval="1"/>
</record>

<record id="mis_report_style_l10n_us_gaap_l6i" model="mis.report.style">
<field name="name">l10n_us_gaap l6i</field>
<field name="indent_level_inherit" eval="0"/>
<field name="indent_level">4</field>
<field name="font_style_inherit" eval="0"/>
<field name="font_style">italic</field>
<field name="hide_empty_inherit" eval="0"/>
<field name="hide_empty" eval="1"/>
</record>

</data>
</odoo>
Binary file not shown.
Binary file not shown.
Loading

0 comments on commit 81626ab

Please sign in to comment.