18 lines
476 B
Python
18 lines
476 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
{
|
|
'name': 'Authorize.Net Payment Acquirer',
|
|
'author' : 'Odoo S.A',
|
|
'category': 'Accounting',
|
|
'summary': 'Payment Acquirer: Authorize.net Implementation',
|
|
'version': '1.0',
|
|
'description': """Authorize.Net Payment Acquirer""",
|
|
'depends': ['payment'],
|
|
'data': [
|
|
'views/payment_views.xml',
|
|
'views/payment_authorize_templates.xml',
|
|
'data/payment_acquirer_data.xml',
|
|
],
|
|
'installable': True,
|
|
}
|