Translations:Requests/1/en: Difference between revisions

From ARIS
Jump to navigation Jump to search
FuzzyBot (talk | contribs)
Importing a new version from external source
 
FuzzyBot (talk | contribs)
Importing a new version from external source
Line 1: Line 1:
Requests are the most important entities in ARIS, whose main purpose is to manage them.
Requests are the most important entities in ARIS, whose main purpose is to manage them.
They are always associated to a given patient, who must have been created before hand.
They are always associated to a given patient, who must have been created before hand.
<div style="float:right; margin: 0px 0px 0px 0px">
<graphviz border='frame' format='svg'>
digraph RequestsDiagram {
  node [shape="oval" style=filled fillcolor="orange" fontsize="9pt"];
  //edge [minlen=2];
  //----- Requests graph
    // Nodes
    Requests [label="Requests" ];
    Create [label="Create", URL="#Create" ];
    ChangeInformation [label="Change Information", URL="#Change_information"];
    PatientsData [label="Patients' Data", shape="tab", URL="#Create"];
    AdditionalInformation [label="Additional Information", shape="tab", URL="#Create"];
    BiologicalSamples [label="Biological Samples", shape="tab", URL="#Create" ];
    AnalyticalTests [label="Analytical Tests", shape="tab", URL="#Create" ];
    DeliverSamples [label="Deliver Samples", URL="#Deliver_samples" ];
    IntroduceResults [label="Introduce Results", URL="#Introduce_results" ];
    ValidateResults [label="Validate Results", URL="#Validate_results"];
    SearchHistoric [label="Search Historic", URL="#Search_historic"];
    // Edges
    Requests -> Create;
    Requests -> ChangeInformation;
    Create -> PatientsData;
    ChangeInformation -> PatientsData;
    PatientsData -> AdditionalInformation [dir=both minlen=2];
    AdditionalInformation -> BiologicalSamples [dir=both minlen=2];
    BiologicalSamples -> AnalyticalTests [dir=both minlen=2];
    Requests -> DeliverSamples
    DeliverSamples -> BiologicalSamples;
    Requests -> IntroduceResults;
    IntroduceResults -> AnalyticalTests;
    Requests -> ValidateResults;
    ValidateResults -> AnalyticalTests;
    Requests -> SearchHistoric;

Revision as of 11:47, 23 January 2024

Information about message (contribute)
This message has no documentation. If you know where or how this message is used, you can help other translators by adding documentation to this message.
Message definition (Requests)
Requests are the most important entities in ARIS, whose main purpose is to manage them.
They are always associated to a given patient, who must have been created before hand.

Requests are the most important entities in ARIS, whose main purpose is to manage them. They are always associated to a given patient, who must have been created before hand.

<graphviz border='frame' format='svg'> digraph RequestsDiagram {

 node [shape="oval" style=filled fillcolor="orange" fontsize="9pt"];
 //edge [minlen=2];
 //----- Requests graph
   // Nodes
   Requests [label="Requests" ];
   Create [label="Create", URL="#Create" ];
   ChangeInformation [label="Change Information", URL="#Change_information"];
   PatientsData [label="Patients' Data", shape="tab", URL="#Create"];
   AdditionalInformation [label="Additional Information", shape="tab", URL="#Create"];
   BiologicalSamples [label="Biological Samples", shape="tab", URL="#Create" ];
   AnalyticalTests [label="Analytical Tests", shape="tab", URL="#Create" ];
   DeliverSamples [label="Deliver Samples", URL="#Deliver_samples" ];
   IntroduceResults [label="Introduce Results", URL="#Introduce_results" ];
   ValidateResults [label="Validate Results", URL="#Validate_results"];
   SearchHistoric [label="Search Historic", URL="#Search_historic"];
   // Edges
   Requests -> Create;
   Requests -> ChangeInformation;
   Create -> PatientsData;
   ChangeInformation -> PatientsData;
   PatientsData -> AdditionalInformation [dir=both minlen=2];
   AdditionalInformation -> BiologicalSamples [dir=both minlen=2];
   BiologicalSamples -> AnalyticalTests [dir=both minlen=2];
   Requests -> DeliverSamples
   DeliverSamples -> BiologicalSamples;
   Requests -> IntroduceResults;
   IntroduceResults -> AnalyticalTests;
   Requests -> ValidateResults;
   ValidateResults -> AnalyticalTests;
   Requests -> SearchHistoric;