Translations:Requests/3/es: Difference between revisions
Jump to navigation
Jump to search
Created page with "==Solicitud de la vida útil== <div style="float:right; margin: 0px 0px 0px 0px"> <graphviz border='frame' format='svg'> digraph StatesDiagram { node [shape=rectangle style=rounded fontsize="9pt"]; edge [fontsize="7pt"]; //----- Main graph // Nodes Begin [label="" shape="circle" style=filled fillcolor=black fixedsize=true width=0.2 height=0.2]; Registered [label="Registered"]; Processing [label="Processing"]; WithResults [label="WithResults"];..." |
No edit summary |
||
| (2 intermediate revisions by the same user not shown) | |||
| Line 1: | Line 1: | ||
== | ==Ciclo de vida de la Solicitud == | ||
<div style="float:right; margin: 0px 0px 0px 0px"> | <div style="float:right; margin: 0px 0px 0px 0px"> | ||
<graphviz border='frame' format='svg'> | <graphviz border='frame' format='svg'> | ||
| Line 8: | Line 8: | ||
// Nodes | // Nodes | ||
Begin [label="" shape="circle" style=filled fillcolor=black fixedsize=true width=0.2 height=0.2]; | Begin [label="" shape="circle" style=filled fillcolor=black fixedsize=true width=0.2 height=0.2]; | ||
Registered [label=" | Registered [label="Registrada"]; | ||
Processing [label=" | Processing [label="Procesando"]; | ||
WithResults [label=" | WithResults [label="Con Resultados"]; | ||
Validated [label=" | Validated [label="Validada"]; | ||
Cancelled [label=" | Cancelled [label="Cancelada"]; | ||
End [label="" shape="doublecircle" style=filled fillcolor="black" fixedsize=true width=0.2 height=0.2]; | End [label="" shape="doublecircle" style=filled fillcolor="black" fixedsize=true width=0.2 height=0.2]; | ||
// Edges | // Edges | ||
Begin -> Registered [constraint=false]; | Begin -> Registered [constraint=false]; | ||
Registered -> Processing [label=" | Registered -> Processing [label="Alguna muestra entregada" constraint=false]; | ||
Processing -> WithResults [label=" | Processing -> WithResults [label="Todos los resultados disponibles" constraint=false]; | ||
WithResults -> Validated [label=" | WithResults -> Validated [label="Todos los tests validados" constraint=false]; | ||
Validated -> End [constraint=false]; | Validated -> End [constraint=false]; | ||
Registered -> Cancelled [label=" | Registered -> Cancelled [label="Cancelar"]; | ||
Processing -> Cancelled [label=" | Processing -> Cancelled [label="Cancelar"]; | ||
WithResults -> Cancelled [label=" | WithResults -> Cancelled [label="Cancelar"]; | ||
Cancelled -> End [constraint=false]; | Cancelled -> End [constraint=false]; | ||
{ rank=same; Begin Registered Processing WithResults Validated} | |||
{ rank=same; Cancelled End} | |||
} | |||
</graphviz> | |||
</div> | |||