Skip to content

Commit

Permalink
Merge PR #129 into 16.0
Browse files Browse the repository at this point in the history
Signed-off-by pedrobaeza
  • Loading branch information
OCA-git-bot committed Jun 28, 2024
2 parents 63e2d85 + 57abd43 commit 207fa72
Show file tree
Hide file tree
Showing 15 changed files with 1,133 additions and 0 deletions.
91 changes: 91 additions & 0 deletions l10n_us_mis_financial_report/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,91 @@
=====================================================
Profit & Loss (US) / Balance sheet (US) MIS templates
=====================================================

..
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! source digest: sha256:35e3ad836c47238b09fe511febcb806bafddc4699aedb0e224e55517c31128d0
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
.. |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--usa-lightgray.png?logo=github
:target: https://github.com/OCA/l10n-usa/tree/16.0/l10n_us_mis_financial_report
:alt: OCA/l10n-usa
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
:target: https://translation.odoo-community.org/projects/l10n-usa-16-0/l10n-usa-16-0-l10n_us_mis_financial_report
:alt: Translate me on Weblate
.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png
:target: https://runboat.odoo-community.org/builds?repo=OCA/l10n-usa&target_branch=16.0
:alt: Try me on Runboat

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

This addon provides MIS builder templates to generate generic (US) Profit & Loss and Balance Sheet reports based on account types.

**Table of contents**

.. contents::
:local:

Usage
=====

Select one of the `Profit & Loss (US)` or `Balance Sheet (US)` templates in a new MIS report.

For details, refer to the `MIS Builder documentation <https://github.com/OCA/mis-builder/tree/16.0/mis_builder#usage>`_

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 to smash it by providing a detailed and welcomed
`feedback <https://github.com/OCA/l10n-usa/issues/new?body=module:%20l10n_us_mis_financial_report%0Aversion:%2016.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
~~~~~~~

* Binhex

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

* Christian Ramos <[email protected]> (https://binhex.cloud)

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.

.. |maintainer-Christian-RB| image:: https://github.com/Christian-RB.png?size=40px
:target: https://github.com/Christian-RB
:alt: Christian-RB

Current `maintainer <https://odoo-community.org/page/maintainer-role>`__:

|maintainer-Christian-RB|

This module is part of the `OCA/l10n-usa <https://github.com/OCA/l10n-usa/tree/16.0/l10n_us_mis_financial_report>`_ project on GitHub.

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
Empty file.
18 changes: 18 additions & 0 deletions l10n_us_mis_financial_report/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).

{
"name": "Profit & Loss (US) / Balance sheet (US) MIS templates",
"version": "16.0.1.0.0",
"license": "AGPL-3",
"author": "Binhex,Odoo Community Association (OCA)",
"website": "https://github.com/OCA/l10n-usa",
"category": "Localization",
"depends": ["mis_template_financial_report"],
"data": [
"data/mis_report_style.xml",
"data/mis_report.xml",
"data/mis_report_kpi.xml",
"data/mis_report_subreport.xml",
],
"maintainers": ["Christian-RB"],
}
10 changes: 10 additions & 0 deletions l10n_us_mis_financial_report/data/mis_report.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<odoo>
<record id="report_pl_us" model="mis.report">
<field name="name">Profit &amp; Loss (US)</field>
<field name="style_id" ref="mis_template_financial_report.style_default" />
</record>
<record id="report_bs_us" model="mis.report">
<field name="name">Balance Sheet (US)</field>
<field name="style_id" ref="mis_template_financial_report.style_default" />
</record>
</odoo>
Loading

0 comments on commit 207fa72

Please sign in to comment.