Skip to content

Commit

Permalink
Merge PR #733 into 16.0
Browse files Browse the repository at this point in the history
Signed-off-by HaraldPanten
  • Loading branch information
OCA-git-bot committed Oct 23, 2024
2 parents e1c6d07 + 4ea2dee commit ddf0614
Show file tree
Hide file tree
Showing 24 changed files with 2,961 additions and 0 deletions.
117 changes: 117 additions & 0 deletions partner_aging/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,117 @@
=====================================
Interactive Partner Aging at any date
=====================================

..
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! source digest: sha256:9bfe8999840f5c140815c6c429d7c322c387700d6bd03841e4a0722999efaf40
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
.. |badge1| image:: https://img.shields.io/badge/maturity-Production%2FStable-green.png
:target: https://odoo-community.org/page/development-status
:alt: Production/Stable
.. |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%2Faccount--payment-lightgray.png?logo=github
:target: https://github.com/OCA/account-payment/tree/16.0/partner_aging
:alt: OCA/account-payment
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
:target: https://translation.odoo-community.org/projects/account-payment-16-0/account-payment-16-0-partner_aging
: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/account-payment&target_branch=16.0
:alt: Try me on Runboat

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

This module creates a new customer / supplier aging report as of a given date.

The default Aged Partner balance report is related to a specific date and a
static PDF that is based on the difference between credits and debits, not
based on documents such as Invoices/Bills and Payments.

This module provides an interactive view with details of the invoice.

This module does not consider unapplied credits.

**Table of contents**

.. contents::
:local:

Usage
=====

To use this module, you need to:

#. Go to Accounting
#. Click on Sales > Customer Aging or Purchases > Supplier Aging
#. Change the date if necessary

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

Bugs are tracked on `GitHub Issues <https://github.com/OCA/account-payment/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/account-payment/issues/new?body=module:%20partner_aging%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
~~~~~~~

* Open Source Integrators

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

* Bhavesh Odedra <[email protected]>
* Balaji Kannan <[email protected]>
* Sandeep Mangukiya <[email protected]>
* Sudarshan Kadalazhi <[email protected]>
* Murtuza Saleh <[email protected]>
* Maxime Chambreuil <[email protected]>
* Nikul Chaudhary <[email protected]>
* Ammar Offcewala <[email protected]>
* Urvisha Desai <[email protected]>

Other credits
~~~~~~~~~~~~~

The development of this module has been financially supported by:

* Open Source Integrators <https://www.opensourceintegrators.com>
* Serpent Consulting Services Pvt. Ltd. <https://www.serpentcs.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.

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

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

|maintainer-Urvisha-OSI|

This module is part of the `OCA/account-payment <https://github.com/OCA/account-payment/tree/16.0/partner_aging>`_ project on GitHub.

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
4 changes: 4 additions & 0 deletions partner_aging/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Copyright (C) 2022 Open Source Integrators
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).

from . import wizard
21 changes: 21 additions & 0 deletions partner_aging/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Copyright 2012 - 2022 Open Source Integrators
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
{
"name": "Interactive Partner Aging at any date",
"summary": "Aging as a view - invoices and credits",
"version": "16.0.1.0.0",
"license": "AGPL-3",
"author": "Open Source Integrators, Odoo Community Association (OCA)",
"category": "Accounting & Finance",
"website": "https://github.com/OCA/account-payment",
"depends": ["account"],
"data": [
"security/ir.model.access.csv",
"wizard/res_partner_aging_customer.xml",
"wizard/res_partner_aging_supplier.xml",
],
"installable": True,
"application": True,
"development_status": "Production/Stable",
"maintainers": ["Urvisha-OSI"],
}
Loading

0 comments on commit ddf0614

Please sign in to comment.