From 1763686165caa7e5e32a37fbcd8ba855e3419878 Mon Sep 17 00:00:00 2001 From: warrendennis Date: Mon, 19 Jul 2021 21:49:14 -0700 Subject: [PATCH] Update referral.md --- content/050_development/referral.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/content/050_development/referral.md b/content/050_development/referral.md index d390c6c..79d4a8d 100644 --- a/content/050_development/referral.md +++ b/content/050_development/referral.md @@ -4,19 +4,19 @@ date: 2019-09-09T17:24:59-07:00 weight: 10 --- -The creation of e-Referrals (called "consultations" in OSCAR) is supported by the Java Server Pages (JSP) page `ConsulationFormRequest.JSP`. Received CDX documents are shown as possible attachments using the `showCdxDocumentArchive` JSP. +The creation of e-Referrals (called "consultations" in OSCAR) is supported by the Java Server Pages (JSP) page `ConsultationFormRequest.jsp`. Received CDX documents are shown as possible attachments using the `showCdxDocumentArchive` JSP. -The corresponding actions for sending CDX documents are implemented in `EctConsultationRequestFormAction.java`. Sent referral documents and received responses can be shown using `showCdxDocumentArchive` JSP. +The corresponding actions for sending CDX documents are implemented in `EctConsultationFormRequestAction.java`. Sent referral documents and received responses can be shown using `showCdxDocumentArchive` JSP. ```mermaid classDiagram - ConsultationFormRequest --> EctConsultationRequestFormAction : struts-config.example + ConsultationFormRequest --> EctConsultationFormRequestAction : struts-config.example ConsultationFormRequest : <> ConsultationFormRequest --> showCdxDocumentArchive : <> ConsultationFormRequest --> attachConsultation2 : <> attachConsultation2 --> showCdxDocumentArchive : <> - EctConsultationRequestFormAction --> ISubmitDoc - EctConsultationRequestFormAction : doCdxSend() + EctConsultationFormRequestAction --> ISubmitDoc + EctConsultationFormRequestAction : doCdxSend() ISubmitDoc : newDoc() ISubmitDoc : updateDoc()