Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions content/050_development/referral.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 : <<JSP>>
ConsultationFormRequest --> showCdxDocumentArchive : <<link>>
ConsultationFormRequest --> attachConsultation2 : <<link>>
attachConsultation2 --> showCdxDocumentArchive : <<link>>
EctConsultationRequestFormAction --> ISubmitDoc
EctConsultationRequestFormAction : doCdxSend()
EctConsultationFormRequestAction --> ISubmitDoc
EctConsultationFormRequestAction : doCdxSend()
ISubmitDoc : newDoc()
ISubmitDoc : updateDoc()

Expand Down