Skip to content

Commit

Permalink
[16.0][MIG] account_payment_netting
Browse files Browse the repository at this point in the history
  • Loading branch information
Saran440 authored and Pani-k-folk committed Dec 4, 2024
1 parent 5137267 commit 045cbdb
Show file tree
Hide file tree
Showing 17 changed files with 601 additions and 405 deletions.
7 changes: 4 additions & 3 deletions account_payment_netting/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Account Payment Netting
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! source digest: sha256:5a59777a2cbed41a5490951d8fa5d17b69a0cb7cb89a8107a55cbb2ab1b12d3c
!! source digest: sha256:8364edf09da1fd6decbf2c97a25bd9e54b3e4c605fd65666712c3cc646d2fc1e
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
Expand All @@ -34,7 +34,7 @@ This module allow net payment on AR/AP invoice from the same business partner.
but make it more user friendly when netting invoices.
While account netting require user to select manually the journal items to do netting
(which create netting journal entry), this module has a new menu "Invoices to netting"
allowing user to select both customer/supplier invoice to register payment.
allowing user to select both customer invoice/vendor bill to register payment.

**Table of contents**

Expand All @@ -52,7 +52,7 @@ and user decide to make payment on the diff.
- Click on action "Register Payment", the wizard will show the diff amount
- Make payment as normal

This create Customer Payment if AR > AP, Supplier Payment otherwise.
This create Customer Payment if AR > AP, Vendor Payment otherwise.

Bug Tracker
===========
Expand All @@ -76,6 +76,7 @@ Contributors
~~~~~~~~~~~~

* Kitti Upariphutthiphong <[email protected]>
* Saran Lim. <[email protected]>

Maintainers
~~~~~~~~~~~
Expand Down
2 changes: 1 addition & 1 deletion account_payment_netting/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2019 Ecosoft Co., Ltd (http://ecosoft.co.th/)
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html)

from . import models
from . import wizards
11 changes: 5 additions & 6 deletions account_payment_netting/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,17 @@

{
"name": "Account Payment Netting",
"version": "12.0.1.0.1",
"version": "16.0.1.0.0",
"summary": "Net Payment on AR/AP invoice from the same partner",
"category": "Accounting & Finance",
"author": "Ecosoft, " "Odoo Community Association (OCA)",
"author": "Ecosoft, Odoo Community Association (OCA)",
"license": "AGPL-3",
"website": "https://github.com/OCA/account-financial-tools",
"depends": [
"account",
],
"depends": ["account"],
"data": [
"views/account_invoice_view.xml",
"views/account_move_view.xml",
"views/account_payment_view.xml",
"wizards/account_payment_register_views.xml",
],
"installable": True,
"development_status": "Beta",
Expand Down
2 changes: 0 additions & 2 deletions account_payment_netting/models/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
# Copyright 2019 Ecosoft Co., Ltd (http://ecosoft.co.th/)
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html)

from . import account_payment
from . import account_invoice
122 changes: 0 additions & 122 deletions account_payment_netting/models/account_invoice.py

This file was deleted.

Loading

0 comments on commit 045cbdb

Please sign in to comment.