flectra/addons/payment_paypal/__manifest__.py
2018-07-10 16:35:41 +05:30

19 lines
513 B
Python

# -*- coding: utf-8 -*-
{
'name': 'Paypal Payment Acquirer',
'author': 'Odoo S.A',
'category': 'Accounting',
'summary': 'Payment Acquirer: Paypal Implementation',
'version': '1.0',
'description': """Paypal Payment Acquirer""",
'depends': ['payment'],
'data': [
'views/payment_views.xml',
'views/payment_paypal_templates.xml',
'data/payment_acquirer_data.xml',
],
'installable': True,
'post_init_hook': 'create_missing_journal_for_acquirers',
}