mirror of
https://gitlab.com/hibou-io/hibou-odoo/suite.git
synced 2025-01-20 12:37:31 +02:00
29 lines
668 B
Python
Executable File
29 lines
668 B
Python
Executable File
{
|
|
'name': 'Sale Payment Web',
|
|
'author': 'Hibou Corp. <hello@hibou.io>',
|
|
'category': 'Sales',
|
|
'version': '15.0.1.0.0',
|
|
'description':
|
|
"""
|
|
Sale Payment Web
|
|
================
|
|
|
|
Allow sales people to register payments for sale orders.
|
|
|
|
Electronic payments will create transactions and automatically reconcile on the invoice.
|
|
|
|
""",
|
|
'depends': [
|
|
'payment',
|
|
'sale',
|
|
],
|
|
'auto_install': False,
|
|
'data': [
|
|
'security/sale_security.xml',
|
|
'security/ir.model.access.csv',
|
|
'views/payment_views.xml',
|
|
'views/sale_views.xml',
|
|
'wizard/account_payment_register_views.xml',
|
|
],
|
|
}
|