purchase_advance_payment/__manifest__.py

31 lines
1.2 KiB
Python

{
'name': 'Purchase Advance Payment',
'version': '17.0.2.0.0',
'category': 'Purchase',
'summary': 'Create advance payments directly from purchase orders',
'description': """
This module allows creating advance payments directly from purchase orders.
When an advance payment is created, a deposit line is automatically added to the PO.
The journal entry uses the expense account from the default advance payment product
and the outstanding payment account from the selected cash/bank journal.
Features:
- Create advance payments from PO form
- Automatic deposit line creation
- Proper accounting with configurable accounts
- Payment remains in draft for review
""",
'author': 'Suherdy Yacob',
'depends': ['purchase', 'account'],
'data': [
'security/ir.model.access.csv',
'data/product_data.xml',
'wizard/create_advance_payment_wizard_views.xml',
'views/purchase_advance_payment_views.xml',
'views/purchase_order_views.xml',
'views/res_config_settings_views.xml',
],
'installable': True,
'auto_install': False,
'license': 'LGPL-3',
}