Skip to content
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ public PRPAIN201310UV02Type toPrpa(final PixV3QueryResponse simpleResponse) {

final var registrationEvent =
new PRPAIN201310UV02MFMIMT700711UV01RegistrationEvent();
registrationEvent.setStatusCode(new CS("ACTIVE", null, null));
registrationEvent.setStatusCode(new CS("active", null, null));
registrationEvent.setClassCode(ActClass.REG);
registrationEvent.setMoodCode(ActMood.EVN);
subject.setRegistrationEvent(registrationEvent);
Expand All @@ -131,7 +131,7 @@ public PRPAIN201310UV02Type toPrpa(final PixV3QueryResponse simpleResponse) {

final var patient = new PRPAMT201304UV02Patient();
patient.setClassCode("PAT");
patient.setStatusCode(new CS("ACTIVE", null, null));
patient.setStatusCode(new CS("active", null, null));
patient.setId(simpleResponse.getPatientIds());
patient.setProviderOrganization(simpleResponse.getProviderOrganization());
subject1.setPatient(patient);
Expand Down
3 changes: 3 additions & 0 deletions src/site/changes.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@
</properties>
<body>
<release version="5.2.0" description="IPF 5.2.0" date="">
<action issue="511" dev="qligier" type="fix">
Fix case of HL7v3 statusCodes in transformers
</action>
<action issue="510" dev="razvanTri" type="fix">
Fix detected issue event code in automatically generated HL7v3 NAKs
</action>
Expand Down
Loading