Standalone module extracted from fusion_claims providing technician scheduling, route simulation with Google Maps, GPS tracking, and cross-instance task sync between odoo-westin and odoo-mobility. Includes fix for route simulation: added Directions API error logging to diagnose silent failures from conflicting Google Maps API keys. Made-with: Cursor
39 lines
1.2 KiB
Python
39 lines
1.2 KiB
Python
# -*- coding: utf-8 -*-
|
|
# Copyright 2024-2026 Nexa Systems Inc.
|
|
# License OPL-1 (Odoo Proprietary License v1.0)
|
|
|
|
{
|
|
'name': 'Fusion Tasks',
|
|
'version': '19.0.1.0.0',
|
|
'category': 'Services/Field Service',
|
|
'summary': 'Technician scheduling, route planning, GPS tracking, and cross-instance sync.',
|
|
'author': 'Nexa Systems Inc.',
|
|
'website': 'https://www.nexasystems.ca',
|
|
'license': 'OPL-1',
|
|
'depends': [
|
|
'base',
|
|
'mail',
|
|
'calendar',
|
|
'sales_team',
|
|
],
|
|
'data': [
|
|
'security/security.xml',
|
|
'security/ir.model.access.csv',
|
|
'data/ir_cron_data.xml',
|
|
'views/technician_task_views.xml',
|
|
'views/task_sync_views.xml',
|
|
'views/technician_location_views.xml',
|
|
'views/res_config_settings_views.xml',
|
|
],
|
|
'post_init_hook': '_fusion_tasks_post_init',
|
|
'assets': {
|
|
'web.assets_backend': [
|
|
'fusion_tasks/static/src/css/fusion_task_map_view.scss',
|
|
'fusion_tasks/static/src/js/fusion_task_map_view.js',
|
|
'fusion_tasks/static/src/xml/fusion_task_map_view.xml',
|
|
],
|
|
},
|
|
'installable': True,
|
|
'application': True,
|
|
}
|