769eafb483
Flectra is Forked from Odoo v11 commit : (6135e82d73
)
27 lines
717 B
Python
27 lines
717 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
{
|
|
'name': 'Payment - Sale',
|
|
'category': 'Sales',
|
|
'summary': 'Link Sales and Payment',
|
|
'version': '1.0',
|
|
'description': """Link Sales and Payment
|
|
|
|
Provide tools for sale-related payment
|
|
|
|
* specific management of transactions like sale order confirmation
|
|
* tools method to handle transactions when allowing to pay / sell
|
|
* JS code to handle a payment form (eCommerce
|
|
* add payment-related fields on SO
|
|
""",
|
|
'depends': ['payment', 'sale'],
|
|
'data': [
|
|
'views/payment_views.xml',
|
|
'views/crm_team_views.xml',
|
|
'views/sale_order_views.xml',
|
|
'views/sale_portal_templates.xml',
|
|
],
|
|
'installable': True,
|
|
'auto_install': False,
|
|
}
|