Flujo SCRAP - Límite de Reparaciones de Modem

Flowcharts & More · flowchart diagram · unknown license

This flowchart illustrates a modem repair process with a defined limit of three repair attempts, after which the modem is scrapped if it continues to fail

Source: https://github.com/IIAteeneaaII/InventarioV1/blob/df6f5ec5376b9f7d14d43711ed65e557bf5fcfe4/README/DIAGRAMAS_FLUJO_SIMOD.md
Curated by IIAteeneaaII
repair workflow quality control scrap process manufacturing electronics repair flowchart inventory management

Mermaid source

flowchart TD
    subgraph CASO3["CASO SCRAP - Límite de Reparaciones"]
        A["DIAGNOSTICADO<br/>Intento 1"] --> B["REPARACION<br/>Intento 1"]
        B --> C["RETEST"]
        C -->|"FAIL"| D["DIAGNOSTICADO<br/>Intento 2"]
        D --> E["REPARACION<br/>Intento 2"]
        E --> F["RETEST"]
        F -->|"FAIL"| G["DIAGNOSTICADO<br/>Intento 3"]
        G --> H["REPARACION<br/>Intento 3"]
        H --> I["RETEST"]
        I -->|"FAIL"| J{"¿3+ intentos?"}
        J -->|"Sí"| K["SCRAP<br/>UScrap"]
        K --> L["Modem dado de baja"]
        
        C -->|"PASS"| M["EMPAQUE"]
        F -->|"PASS"| M
        I -->|"PASS"| M
    end
    
    style A fill:#1abc9c,color:#fff
    style D fill:#1abc9c,color:#fff
    style G fill:#1abc9c,color:#fff
    style B fill:#e67e22,color:#fff
    style E fill:#e67e22,color:#fff
    style H fill:#e67e22,color:#fff
    style C fill:#2ecc71,color:#fff
    style F fill:#2ecc71,color:#fff
    style I fill:#2ecc71,color:#fff
    style J fill:#f39c12,color:#000
    style K fill:#e74c3c,color:#fff
    style L fill:#7f8c8d,color:#fff
    style M fill:#9b59b6,color:#fff

What this diagram shows

This diagram details a quality control and repair workflow for modems, specifically addressing a "SCRAP" scenario where a modem fails retesting after three repair attempts. It outlines the sequential steps of diagnosis, repair, and retest for each attempt, culminating in either packaging (if successful) or scrapping (if the repair limit is exceeded).

When to use it

Use this diagram to visualize processes involving iterative repair attempts, quality control gates, and defined limits for repair before an item is deemed irreparable or scrapped. It's suitable for manufacturing, electronics repair, or asset management workflows.

How to adapt it for your project

This diagram can be adapted by changing the number of repair attempts, modifying the "PASS"/"FAIL" criteria, or introducing different outcomes besides "SCRAP" (e.g., "refurbish", "send to specialist"). The specific items (modem) and stages (diagnosis, repair, retest, packaging) can be customized for any product or service.

Key concepts