Phase 1 collapses the Plating app's 17 top-level menus down to 6
domains (Sales, Operations, Receiving & Shipping, Quality,
Compliance, Configuration) so users no longer scroll a 17-item
sidebar to find one thing.
Re-parented (no XML id changes — bookmarks still work):
- fusion_plating_compliance.menu_fp_compliance_root
→ menu_fp_compliance_hub (renamed 'General')
- fusion_plating_safety.menu_fp_safety_root
→ menu_fp_compliance_hub (renamed 'Safety / WHMIS')
- fusion_plating_aerospace.menu_fp_aerospace
→ menu_fp_compliance_hub (renamed 'Aerospace (AS9100 / Nadcap)')
- fusion_plating_nuclear.menu_fp_nuclear
→ menu_fp_compliance_hub (renamed 'Nuclear (CSA N299 / CNSC)')
- fusion_plating_cgp.menu_fp_cgp
→ menu_fp_compliance_hub (renamed 'Controlled Goods (CGP)')
- fusion_plating_certificates.menu_fp_certificates
→ menu_fp_quality (Certs are a Quality output, not a separate
top-level concern)
- fusion_plating_bridge_maintenance.menu_fp_maintenance
→ menu_fp_operations
- fusion_plating.menu_fp_job_step_move (Move Log)
→ menu_fp_operations
- fusion_plating.menu_fp_job_step_timelog (Labor History)
→ menu_fp_operations
The new menu_fp_compliance_hub is supervisor-gated; underlying
verticals retain their own group locks (CGP officer, etc.).
Settings menu remains manager-gated through inheritance from
menu_fp_config (already in place).
NEW — Plating landing-page resolver:
- ir.actions.act_window.x_fc_pickable_landing (Boolean tag for
curated picklist; flagged on Sale Orders, Quotations, Process
Recipes for Phase 1; more in Phase 2)
- res.company.x_fc_default_landing_action_id (admin sets fallback)
- res.users.x_fc_plating_landing_action_id (per-user override)
- ir.actions.server action_fp_resolve_plating_landing — picks
user → company → Sale Orders fallback at click time
- menu_fp_root rewired to call the resolver
- User profile + Settings tabs surface the dropdowns
Configurator's earlier menu_fp_root override (action_fp_sale_orders
direct) removed — core's resolver now owns the routing.
Versions bumped: fusion_plating 19.0.11.0.0, configurator
19.0.17.16.0, plus 7 dependent modules patched.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
92 lines
3.4 KiB
Python
92 lines
3.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 — Safety (EHS)',
|
|
'version': '19.0.1.1.0',
|
|
'category': 'Manufacturing/Plating',
|
|
'summary': 'Occupational health and safety for plating shops: SDS library, '
|
|
'WHMIS/TDG training, exposure monitoring, JHSC, incidents, PPE, '
|
|
'chemical inventory.',
|
|
'description': """
|
|
Fusion Plating — Safety (EHS)
|
|
=============================
|
|
|
|
Part of the Fusion Plating product family by Nexa Systems Inc.
|
|
|
|
This add-on layers a process-agnostic Environmental, Health and Safety
|
|
workspace on top of the core Fusion Plating module. It gives a plating
|
|
shop a single place to manage day-to-day safety obligations of running a
|
|
metal-finishing facility without depending on any jurisdiction-specific
|
|
regulatory pack.
|
|
|
|
Included workspaces
|
|
-------------------
|
|
* SDS Library — Safety Data Sheet repository with version, hazard class,
|
|
GHS pictograms, language, expiry tracking and PDF attachment.
|
|
* Chemical Inventory — physical chemical containers with storage location,
|
|
on-hand quantity, reorder point and incompatibility relations.
|
|
* Training Matrix — training type catalogue (WHMIS, TDG, first-aid, LOTO,
|
|
confined space, etc.) plus per-employee records with auto-computed
|
|
expiry and current/expiring/expired status.
|
|
* Exposure Monitoring — air sampling, biological, noise and vibration
|
|
monitoring events with OEL reference, percent-of-limit and result
|
|
classification.
|
|
* JHSC — Joint Health & Safety Committee with worker and management
|
|
representatives, plus a meeting register with agenda, minutes and
|
|
action items.
|
|
* Incident Register — injury, near-miss, first-aid, lost-time, medical,
|
|
property damage and environmental events with investigation, root
|
|
cause, corrective action, WSIB Form 7 flagging and lost-time tracking.
|
|
* PPE Issuance — per-employee personal protective equipment issuance log
|
|
with replacement scheduling.
|
|
|
|
Designed to slot in alongside jurisdiction-specific compliance packs
|
|
(fusion_plating_compliance_on, fusion_plating_compliance_tor) without
|
|
duplicating their content.
|
|
|
|
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',
|
|
'hr',
|
|
'product',
|
|
],
|
|
'data': [
|
|
'security/fp_safety_security.xml',
|
|
'security/ir.model.access.csv',
|
|
'data/fp_sequence_data.xml',
|
|
'data/fp_training_type_data.xml',
|
|
'views/fp_sds_views.xml',
|
|
'views/fp_chemical_views.xml',
|
|
'views/fp_training_type_views.xml',
|
|
'views/fp_training_record_views.xml',
|
|
'views/fp_exposure_monitoring_views.xml',
|
|
'views/fp_jhsc_views.xml',
|
|
'views/fp_incident_views.xml',
|
|
'views/fp_ppe_issuance_views.xml',
|
|
'views/hr_employee_views.xml',
|
|
'views/fp_menu.xml',
|
|
],
|
|
'demo': [
|
|
'data/fp_demo_safety_data.xml',
|
|
],
|
|
'assets': {
|
|
'web.assets_backend': [
|
|
'fusion_plating_safety/static/src/scss/fusion_plating_safety.scss',
|
|
],
|
|
},
|
|
'installable': True,
|
|
'application': False,
|
|
'auto_install': False,
|
|
}
|