Skip to content

Commit

Permalink
Merge PR #135 into 17.0
Browse files Browse the repository at this point in the history
Signed-off-by pedrobaeza
  • Loading branch information
OCA-git-bot committed Nov 19, 2024
2 parents 36f27a6 + efb2aa2 commit c4a8a05
Show file tree
Hide file tree
Showing 16 changed files with 1,315 additions and 0 deletions.
94 changes: 94 additions & 0 deletions l10n_us_mis_financial_report/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,94 @@
=====================================================
Profit & Loss (US) / Balance sheet (US) MIS templates
=====================================================

..
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! source digest: sha256:6aa8c839294fc2f6d5948a3803171a62b070c85a6004631d3971f0f75a5827a2
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
.. |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/17.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-17-0/l10n-usa-17-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=17.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:%2017.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/17.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": "17.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 c4a8a05

Please sign in to comment.