39 lines
1.3 KiB
Python
39 lines
1.3 KiB
Python
# -*- coding: utf-8 -*-
|
|
{
|
|
'name': 'Vendor Payment Diff Amount',
|
|
'version': '17.0.1.0.0',
|
|
'category': 'Accounting/Accounting',
|
|
'summary': 'Support payment deductions for vendor payments (withholding tax, fees, etc.)',
|
|
'description': """
|
|
Vendor Payment Deduction Management
|
|
====================================
|
|
|
|
This module extends Odoo 17's vendor payment functionality to support payment deductions
|
|
such as withholding tax, payment fees, and other charges.
|
|
|
|
Key Features:
|
|
-------------
|
|
* Add deduction amount (Amount Substract) to vendor payments
|
|
* Specify account for recording deductions (Substract Account)
|
|
* Automatically calculate final payment amount after deductions
|
|
* Create proper journal entries with deduction lines
|
|
* Validate deduction amounts and account selection
|
|
* Seamless integration with existing payment workflows
|
|
|
|
The module allows accountants to record withholding tax and other charges during payment
|
|
processing, ensuring accurate accounting records and proper general ledger entries.
|
|
""",
|
|
'author': 'Suherdy Yacob',
|
|
'website': 'https://www.yourcompany.com',
|
|
'license': 'LGPL-3',
|
|
'depends': [
|
|
'account',
|
|
],
|
|
'data': [
|
|
'views/account_payment_views.xml',
|
|
],
|
|
'installable': True,
|
|
'application': False,
|
|
'auto_install': False,
|
|
}
|