purchase_advance_payment/__manifest__.py

26 lines
989 B
Python

{
'name': 'Purchase Advance Payment',
'version': '19.0.1.0.0',
'category': 'Purchase',
'summary': 'Link payments to purchase orders as advance payments',
'description': """
This module allows linking payments to purchase orders as advance payments.
When a PO is fully billed, the total is subtracted by the advance payment made.
After payment is linked to the PO, a deposit product is created so the final
invoice/vendor bills will include the deposit product.
""",
'author': 'Suherdy Yacob',
'depends': ['purchase', 'account'],
'data': [
'security/ir.model.access.csv',
'data/product_data.xml',
'wizard/link_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',
}