forked from alaguraj/odoo-testing-addons
30 lines
914 B
Python
30 lines
914 B
Python
{
|
|
'name': 'Dine360 Uber Integration',
|
|
'version': '1.0',
|
|
'category': 'Sales/Point of Sale',
|
|
'summary': 'Integrate Uber Eats and Uber Direct with Odoo POS',
|
|
'description': """
|
|
Uber Integration for Dine360:
|
|
- Sync Uber Eats orders to POS
|
|
- Request Uber Direct delivery for POS orders
|
|
- Real-time status updates between Odoo and Uber
|
|
""",
|
|
'author': 'Dine360',
|
|
'depends': ['point_of_sale', 'dine360_restaurant', 'dine360_kds'],
|
|
'data': [
|
|
'security/ir.model.access.csv',
|
|
'data/uber_cron_data.xml',
|
|
'views/uber_config_views.xml',
|
|
'views/pos_order_views.xml',
|
|
],
|
|
'assets': {
|
|
'point_of_sale.assets': [
|
|
'dine360_uber/static/src/js/uber_pos.js',
|
|
'dine360_uber/static/src/xml/uber_pos.xml',
|
|
],
|
|
},
|
|
'installable': True,
|
|
'application': True,
|
|
'license': 'LGPL-3',
|
|
}
|