- Implemented PayDunya payment provider with necessary models, controllers, and views. - Added configuration files for Docker and Odoo setup. - Included .gitignore for Python and Odoo specific files.
18 lines
508 B
Python
18 lines
508 B
Python
{
|
|
'name': 'PayDunya Odoo',
|
|
'version': '1.0.0',
|
|
'summary': 'PayDunya payment provider',
|
|
'description': 'Payment acquirer integration for PayDunya',
|
|
'category': 'Accounting/Payment Providers',
|
|
'author': 'MMG',
|
|
'depends': ['payment'],
|
|
'data': [
|
|
'data/payment_provider_data.xml',
|
|
'data/payment_method_data.xml',
|
|
'views/payment_paydunya_views.xml',
|
|
'views/payment_paydunya_templates.xml',
|
|
],
|
|
'installable': True,
|
|
'application': False,
|
|
}
|