The Phase B plan (commit 8eb2c2de) listed 12 modules to sweep, but the
codebase has 13 more modules with ACL CSVs referencing the old role
group xmlids. Backward-compat (Phase A's implied_ids chains) keeps
these working today, but the old groups will be deleted after the
30-day rollback window — so the sweep must cover ALL modules with
plating-group ACL refs to avoid post-rollback breakage.
Sweeps: batch, bridge_documents, bridge_maintenance, bridge_mrp
(uninstalled but file present), bridge_quality (planned removal),
bridge_sign, compliance, culture (retired), kpi, logistics,
notifications, portal, reports.
Pattern matches the original sweep:
group_fusion_plating_operator → group_fp_technician
group_fusion_plating_supervisor → group_fp_shop_manager_v2
group_fusion_plating_manager → group_fp_manager
group_fusion_plating_admin → group_fp_owner
group_fp_accounting → group_fp_manager
group_fp_receiving → group_fp_shop_manager_v2
group_fp_estimator → group_fp_sales_rep
group_fp_shop_manager (legacy) → group_fp_manager
cgp_officer → group_fp_quality_manager
cgp_designated_official → group_fp_owner
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
75 lines
2.4 KiB
Python
75 lines
2.4 KiB
Python
# -*- coding: utf-8 -*-
|
|
# Copyright 2026 Nexa Systems Inc.
|
|
# License OPL-1 (Odoo Proprietary License v1.0)
|
|
# Part of the Fusion Plating product family.
|
|
|
|
{
|
|
'name': 'Fusion Plating — Logistics',
|
|
'version': '19.0.3.11.1',
|
|
'category': 'Manufacturing/Plating',
|
|
'summary': (
|
|
'Pickup & delivery for plating shops: vehicle master, driver '
|
|
'tracking, route planning, chain of custody, proof of delivery.'
|
|
),
|
|
'description': """
|
|
Fusion Plating — Logistics
|
|
==========================
|
|
|
|
Part of the Fusion Plating product family by Nexa Systems Inc.
|
|
|
|
Adds pickup & delivery management to the Fusion Plating core:
|
|
|
|
* Vehicle master (with insurance, registration, service, TDG status)
|
|
* Driver tracking (extends hr.employee with licence + TDG fields)
|
|
* Pickup requests — customer-initiated pickup of parts to be processed
|
|
* Deliveries — scheduled delivery of finished parts back to customer
|
|
* Routes — combine multiple pickups + deliveries into a single run
|
|
* Chain of custody — every custody event logged for audit trail
|
|
* Proof of delivery — signature, photos, GPS
|
|
|
|
Depends on the core fusion_plating module. Works on both Odoo Community
|
|
and Enterprise editions.
|
|
|
|
Copyright (c) 2026 Nexa Systems Inc. All rights reserved.
|
|
""",
|
|
'author': 'Nexa Systems Inc.',
|
|
'website': 'https://www.nexasystems.ca',
|
|
'maintainer': 'Nexa Systems Inc.',
|
|
'support': 'support@nexasystems.ca',
|
|
'license': 'OPL-1',
|
|
'price': 0.00,
|
|
'currency': 'CAD',
|
|
'depends': [
|
|
'fusion_plating',
|
|
'fusion_plating_configurator',
|
|
'fusion_plating_receiving', # Shared "Shipping & Receiving" menu root
|
|
'fusion_shipping',
|
|
'hr',
|
|
'mail',
|
|
],
|
|
'data': [
|
|
'security/fp_logistics_security.xml',
|
|
'security/ir.model.access.csv',
|
|
'data/fp_sequence_data.xml',
|
|
'views/fp_vehicle_views.xml',
|
|
'views/fp_pickup_request_views.xml',
|
|
'views/fp_delivery_views.xml',
|
|
'views/fp_route_views.xml',
|
|
'views/fp_chain_of_custody_views.xml',
|
|
'views/fp_proof_of_delivery_views.xml',
|
|
'views/hr_employee_views.xml',
|
|
'views/fp_menu.xml',
|
|
],
|
|
'demo': [
|
|
'data/fp_demo_logistics_data.xml',
|
|
],
|
|
'assets': {
|
|
'web.assets_backend': [
|
|
'fusion_plating_logistics/static/src/scss/fusion_plating_logistics.scss',
|
|
],
|
|
},
|
|
'installable': True,
|
|
'auto_install': False,
|
|
'application': False,
|
|
}
|