flectra/addons/sale_payment/__manifest__.py
flectra-admin 769eafb483 [INIT] Inception of Flectra from Odoo
Flectra is Forked from Odoo v11 commit : (6135e82d73)
2018-01-16 11:45:59 +05:30

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,
}