Specifications menu (urgent — workflow blocker for estimators): - Moved from Configuration → Quality & Documents (manager-only) up to Plating → Quality (sequence 70). Now visible to estimator, supervisor, and manager. - Renamed "Customer Specs" → "Specifications" — the seeded library includes industry standards (AMS, MIL, ASTM, BAC) not just customer-private specs. - Action display name updated: "Customer Specifications" → "Specifications". - Added action.help HTML so the empty-state placeholder explains the Specifications library purpose to first-time users. - Old xmlid (menu_fp_config_customer_spec) preserved so existing links / breadcrumbs / search references continue to resolve. Other clarifying renames: - Safety: "JHSC" / "JHSC Meetings" → "H&S Committee (JHSC)" / "H&S Committee Meetings" — acronym was opaque to non-Canadian H&S folks. - Operations: "Move Log" → "Parts & Rack Move Log" — generic name could be confused with chatter messages or stock moves. - Configuration → Recipes & Steps: "Workflow States" → "Job Workflow Stages" — generic name; clarifies these are job state milestones (passed-stage tracking), not generic workflow. - Compliance → General: child folder "Configuration" → "Reference Data" — three levels of "Configuration" nesting (Plating>Config vs Plating>Compliance>General>Config) was confusing. No model / data changes. Pure menu metadata. 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.3.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,
|
|
}
|