Requests: Difference between revisions

From ARIS
Jump to navigation Jump to search
Blanca (talk | contribs)
No edit summary
Blanca (talk | contribs)
No edit summary
Line 6: Line 6:
   //----- Main graph
   //----- Main graph
     // 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"]
     Registered [label="Registered"];
     Processing [label="Processing"]
     Processing [label="Processing"];
     WithResults [label="WithResults"]
     WithResults [label="WithResults"];
     Validated [label="Validated"]
     Validated [label="Validated"];
     Cancelled [label="Cancelled"]
     Cancelled [label="Cancelled"];
     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="Has some sample" constraint=false]
     Registered -> Processing  [label="Has some sample" constraint=false];
     Processing -> WithResults  [label="Has some results" constraint=false]
     Processing -> WithResults  [label="Has some results" constraint=false];
     WithResults -> Validated  [label="All tests validated" constraint=false]
     WithResults -> Validated  [label="All tests validated" constraint=false];
     Validated -> End [constraint=false]
     Validated -> End [constraint=false];
     Registered -> Cancelled [label="Cancel"]
     Registered -> Cancelled [label="Cancel"];
     Processing -> Cancelled [label="Cancel"]
     Processing -> Cancelled [label="Cancel"];
     WithResults -> Cancelled [label="Cancel"]
     WithResults -> Cancelled [label="Cancel"];
     Cancelled -> End [constraint=false]
     Cancelled -> End [constraint=false];
}
}
</graphviz>
</graphviz>
Line 32: Line 32:
   //----- Requests graph
   //----- Requests graph
     // Nodes
     // Nodes
     Requests [label="Requests" ]
     Requests [label="Requests" ];
     R_Create [label="Create", URL="#Create" ]
     R_Create [label="Create", URL="#Create" ];
     R_ChangeInformation [label="Change Information", URL="#Change_information"]
     R_ChangeInformation [label="Change Information", URL="#Change_information"];
     R_PatientsData [label="Patients' Data", shape="tab"]
     R_PatientsData [label="Patients' Data", shape="tab"];
     R_AdditionalInformation [label="Additional Information", shape="tab"]
     R_AdditionalInformation [label="Additional Information", shape="tab"];
     R_BiologicalSamples [label="Biological Samples", shape="tab" ]
     R_BiologicalSamples [label="Biological Samples", shape="tab" ];
     R_AnalyticalTests [label="Analytical Tests", shape="tab" ]
     R_AnalyticalTests [label="Analytical Tests", shape="tab" ];
     DeliverSamples [label="Deliver Samples", URL="#Deliver_samples" ]
     DeliverSamples [label="Deliver Samples", URL="#Deliver_samples" ];
     IntroduceResults [label="Introduce Results", URL="#Introduce_results" ]
     IntroduceResults [label="Introduce Results", URL="#Introduce_results" ];
     ValidateResults [label="Validate Results", URL="#Validate_resuls"]
     ValidateResults [label="Validate Results", URL="#Validate_resuls"];
     SearchHistoric [label="Search Historic", URL="#Search_historic"]
     SearchHistoric [label="Search Historic", URL="#Search_historic"];
     // Edges
     // Edges
     Requests -> R_Create
     Requests -> R_Create;
     Requests -> R_ChangeInformation  
     Requests -> R_ChangeInformation;
     R_Create -> R_PatientsData
     R_Create -> R_PatientsData;
     R_ChangeInformation -> R_PatientsData
     R_ChangeInformation -> R_PatientsData;
     R_PatientsData -> R_AdditionalInformation [dir=both]
     R_PatientsData -> R_AdditionalInformation [dir=both];
     R_AdditionalInformation -> R_BiologicalSamples [dir=both]
     R_AdditionalInformation -> R_BiologicalSamples [dir=both];
     R_BiologicalSamples -> R_AnalyticalTests [dir=both]
     R_BiologicalSamples -> R_AnalyticalTests [dir=both];
     Requests -> DeliverSamples
     Requests -> DeliverSamples
     DeliverSamples -> R_BiologicalSamples
     DeliverSamples -> R_BiologicalSamples;
     Requests -> IntroduceResults
     Requests -> IntroduceResults;
     IntroduceResults -> R_AnalyticalTests
     IntroduceResults -> R_AnalyticalTests;
     Requests -> ValidateResults
     Requests -> ValidateResults;
     ValidateResults -> R_AnalyticalTests
     ValidateResults -> R_AnalyticalTests;
     Requests -> SearchHistoric
     Requests -> SearchHistoric;
 
}
}
</graphviz>
</graphviz>

Revision as of 16:01, 12 March 2023


UNDER CONSTRUCTION

Create

Change information

Deliver samples

Introduce results

Validate results

Search historic