Damage & Repair Triage
flowchart TD
A["Component reported damaged"] --> B{"Is it safe to power on?"}
B -- No --> C["Remove from service immediately, tag for review"]
B -- Yes --> D{"Is a spare in the shared bin?"}
D -- Yes --> E["Swap immediately, log old unit for repair"]
D -- No --> F{"Repairable with basic tools?"}
F -- Yes --> G["Repair and return to inventory"]
F -- No --> H["Retire and add to next order's BOM"]
classDef q fill:#D4AF37,stroke:#333,color:#000;
classDef act fill:#2E7D32,stroke:#333,color:#fff;
classDef stop fill:#C2185B,stroke:#333,color:#fff;
class B,D,F q;
class E,G act;
class C,H stop;
click A showInfo
click B showInfo
click C showInfo
click D showInfo
click E showInfo
click F showInfo
click G showInfo
click H showInfo
Click any box in the flowchart to see a definition or safety tip.
Reset