Replace em-dashes and en-dashes with hyphens across 789 shipped source files (py/xml/js/scss) so the delivered module reads as human-written; em-dashes had become a recognizable AI-generated tell. Internal .md dev notes are excluded. The WO-sticker mojibake strippers keep their dash search targets (now written — / –). No logic changes: comments and display strings only; validated with py_compile + lxml parse. Rewrite the 7 customer notification emails to be intake-neutral (ship-in / drop-off / pickup) and repair-aware, and fix the Shipped email documents line (packing slip vs bill of lading; certificate only when issued). Subjects use a hyphen separator. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
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.1.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,
|
|
}
|