- Change depends to [base, mail, hr, fusion_plating_logistics] - Rename module to 'Fusion Plating -- Delivery Tasks' - Replace all fusion_claims.* config params with fusion_tasks.* - Remove sync crons (pull_remote_tasks, cleanup_old_shadows) - Remove sync config ACL lines from ir.model.access.csv - Replace sales_team group refs with hr/base equivalents - Update license from OPL-1 to LGPL-3 Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
41 lines
1.4 KiB
Python
41 lines
1.4 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',
|
|
'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,
|
|
}
|