Translations:Requests/3/es

From ARIS
Revision as of 10:59, 24 January 2024 by Javier (talk | contribs) (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"];...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Solicitud de la vida útil

<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"];
   Validated [label="Validated"];
   Cancelled [label="Cancelled"];
   End [label="" shape="doublecircle" style=filled fillcolor="black" fixedsize=true width=0.2 height=0.2];
   // Edges
   Begin -> Registered [constraint=false];
   Registered -> Processing  [label="Some sample delivered" constraint=false];
   Processing -> WithResults  [label="All results provided" constraint=false];
   WithResults -> Validated  [label="All tests validated" constraint=false];
   Validated -> End [constraint=false];
   Registered -> Cancelled [label="Cancel"];
   Processing -> Cancelled [label="Cancel"];
   WithResults -> Cancelled [label="Cancel"];
   Cancelled -> End [constraint=false];