Illustrates the various roles within an inventory system and their corresponding actions, mapping users to specific workflow phases like registration, test
flowchart LR
subgraph ROLES["ROLES DEL SISTEMA"]
UReg["UReg<br/>Registro"]
UTI["UTI<br/>Test Inicial"]
UR["UR<br/>Retest"]
URep["URep<br/>Reparación"]
UE["UE<br/>Empaque"]
UScrap["UScrap<br/>Scrap"]
UC["UC<br/>Cosmética"]
end
UReg -->|"registra"| REGISTRO
UTI -->|"prueba"| TEST_INICIAL
UTI -->|"diagnóstica"| DIAGNOSTICADO
UR -->|"valida"| RETEST
UR -->|"diagnóstica"| DIAGNOSTICADO
URep -->|"repara"| REPARACION
UE -->|"empaca"| EMPAQUE
UScrap -->|"da baja"| SCRAP
UC -->|"transfiere"| COSMETICA
This diagram delineates the different user roles (UReg, UTI, UR, URep, UE, UScrap, UC) within an inventory management system and their specific actions that lead to various system states or phases (REGISTRO, TEST_INICIAL, DIAGNOSTICADO, RETEST, REPARACION, EMPAQUE, SCRAP, COSMETICA). It visually represents who performs what action in the system's workflow.
Use this diagram when defining user roles and responsibilities, mapping out operational workflows, designing access control mechanisms, or onboarding new team members to understand process ownership within an inventory or similar management system.
This diagram can be adapted by adding more granular roles, introducing new workflow phases, detailing specific conditions for transitions, or integrating with other system components like databases or external services. It can also be expanded to show the full lifecycle of an item within the inventory.