Skip to content

Commit

Permalink
dcm4che#2637: Change Status of Scheduled Procedure Steps from SCHEDUL…
Browse files Browse the repository at this point in the history
…ED to ARRIVED on HL7 ADT^A10
gunterze committed Jun 18, 2020
1 parent 6c15c03 commit 7f3ac8f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -253,8 +253,8 @@ private static Attributes transform(UnparsedHL7Message msg, ArchiveHL7Applicatio
private void updateProcedure(Socket s, Patient pat, UnparsedHL7Message msg, HL7Application hl7App) {
ArchiveHL7ApplicationExtension arcHL7App =
hl7App.getHL7ApplicationExtension(ArchiveHL7ApplicationExtension.class);
String arrivalMessageType = arcHL7App.hl7PatientArrivalMessageType();
if (arrivalMessageType != null && arrivalMessageType.equals(msg.msh().getMessageType())) {
String messageType = arcHL7App.hl7PatientArrivalMessageType();
if (messageType != null && messageType.equals(msg.msh().getMessageType())) {
ProcedureContext ctx = procedureService.createProcedureContextHL7(s, msg);
ctx.setArchiveHL7AppExtension(arcHL7App);
ctx.setPatient(pat);

0 comments on commit 7f3ac8f

Please sign in to comment.