Phase D Tasks D1-D4 of permissions overhaul. Adds explicit groups= attributes to: - 9 top-level Plating menus (matrix per spec Section 2.E) - Quality submenus: Audits, Customer Specs, AVL → QM-only - Compliance hub child submenus (CGP, General, Safety, Aerospace, Nuclear) → QM-only - Operations submenus: Maintenance, Move Log, Labor History → Shop Manager+; Replenishment Suggestions → Manager+ Replaces fragile inheritance + action-ACL-based visibility with explicit per-menu gates. Now every role's menu tree is deterministic. Also adds fusion_plating/tests/test_menu_visibility.py — per-role matrix tests using ir.ui.menu.search_count with the test user. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
57 lines
1.9 KiB
Python
57 lines
1.9 KiB
Python
# -*- coding: utf-8 -*-
|
|
# Copyright 2026 Nexa Systems Inc.
|
|
# License OPL-1 (Odoo Proprietary License v1.0)
|
|
|
|
{
|
|
'name': 'Fusion Plating — Maintenance Bridge',
|
|
'version': '19.0.1.2.2',
|
|
'category': 'Manufacturing/Plating',
|
|
'summary': 'Bridge standard Odoo Maintenance with Fusion Plating equipment, '
|
|
'plans, checklists, and sensor integration.',
|
|
'description': """
|
|
Fusion Plating — Maintenance Bridge
|
|
====================================
|
|
|
|
Extends Odoo's standard Maintenance module for electroless nickel plating
|
|
and metal finishing operations. Replaces Steelhead Software CMMS.
|
|
|
|
* Maintenance plans (templates linked to equipment categories)
|
|
* Checklist nodes (individual items within a plan)
|
|
* Labour cost tracking on maintenance events
|
|
* "From last maintenance" recurrence mode
|
|
* Equipment linked to Fusion Plating tanks and facilities
|
|
* Optional sensor measurement bridge (soft dependency)
|
|
|
|
Part of the Fusion Plating product family by Nexa Systems Inc.
|
|
|
|
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',
|
|
'maintenance',
|
|
],
|
|
'data': [
|
|
'security/fp_maintenance_security.xml',
|
|
'security/ir.model.access.csv',
|
|
'data/fp_maintenance_stage_data.xml',
|
|
'data/fp_maintenance_sequence_data.xml',
|
|
'data/fp_equipment_category_data.xml',
|
|
'views/fp_maintenance_plan_views.xml',
|
|
'views/fp_maintenance_node_views.xml',
|
|
'views/maintenance_request_views.xml',
|
|
'views/maintenance_equipment_views.xml',
|
|
'views/fp_maintenance_dashboard_views.xml',
|
|
'views/fp_maintenance_menu.xml',
|
|
],
|
|
'installable': True,
|
|
'application': False,
|
|
'auto_install': False,
|
|
}
|