Skip to content

Commit

Permalink
Update identifier generation logic to append "4" (#55)
Browse files Browse the repository at this point in the history
  • Loading branch information
ibacher authored Jul 11, 2024
1 parent 055a810 commit 61cf0ca
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,7 @@ public void updateIdNumber(PID pid, Patient patient, HL7Config hl7Config, Encoun
}

if (isanteIdentifier == null) {

pid.getPatientID().getIDNumber().setValue(siteCode + patient.getPatientId().toString());
// pid.getPatientID().getIDNumber().setValue(patient.getUuid());

pid.getPatientID().getIDNumber().setValue(siteCode + "4" + patient.getPatientId().toString());
}


Expand Down

0 comments on commit 61cf0ca

Please sign in to comment.