mirror of
https://gitlab.com/hibou-io/hibou-odoo/suite.git
synced 2025-01-20 12:37:31 +02:00
26 lines
646 B
Python
Executable File
26 lines
646 B
Python
Executable File
{
|
|
'name': 'Sale Payment Deposit',
|
|
'author': 'Hibou Corp. <hello@hibou.io>',
|
|
'category': 'Sales',
|
|
'license': 'AGPL-3',
|
|
'version': '15.0.1.0.0',
|
|
'description':
|
|
"""
|
|
Sale Deposits
|
|
=============
|
|
|
|
Automates the creation of 'Deposit' invoices and payments. For example, someone confirming
|
|
a sale with "50% Deposit, 50% on Delivery" payment terms, will pay the
|
|
50% deposit payment up front instead of the entire order.
|
|
""",
|
|
'depends': [
|
|
'sale',
|
|
'payment',
|
|
],
|
|
'auto_install': False,
|
|
'data': [
|
|
'views/account_views.xml',
|
|
'views/sale_portal_templates.xml',
|
|
],
|
|
}
|