43 lines
1.5 KiB
Python
43 lines
1.5 KiB
Python
# -*- coding: utf-8 -*-
|
|
# Copyright 2024-2026 Nexa Systems Inc.
|
|
# License OPL-1 (Odoo Proprietary License v1.0)
|
|
|
|
{
|
|
'name': 'Fusion Plating — Delivery Tasks',
|
|
'version': '19.0.1.0.0',
|
|
'category': 'Services/Field Service',
|
|
'summary': 'Local delivery dispatch with GPS tracking and route planning.',
|
|
'description': 'Delivery task management for fusion plating logistics. '
|
|
'Handles driver scheduling, GPS tracking, travel time calculation, '
|
|
'and push notifications for delivery, pickup, and rush runs.',
|
|
'author': 'Nexa Systems Inc.',
|
|
'website': 'https://www.nexasystems.ca',
|
|
'license': 'LGPL-3',
|
|
'depends': [
|
|
'base',
|
|
'mail',
|
|
'hr',
|
|
'fusion_plating_logistics',
|
|
],
|
|
'data': [
|
|
'security/security.xml',
|
|
'security/ir.model.access.csv',
|
|
'data/ir_cron_data.xml',
|
|
'views/technician_task_views.xml',
|
|
'views/technician_location_views.xml',
|
|
'views/res_config_settings_views.xml',
|
|
],
|
|
'post_init_hook': '_fusion_tasks_post_init',
|
|
# Map view assets temporarily disabled — JS imports may not resolve on
|
|
# factory enterprise Odoo 19. Needs path verification.
|
|
# '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,
|
|
}
|