Skip to content

Commit

Permalink
Replace text for additional displays that don't show "(procedure)"
Browse files Browse the repository at this point in the history
  • Loading branch information
lmd59 committed Dec 11, 2024
1 parent 2289973 commit 0cb4023
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/main/java/org/mitre/synthea/export/FhirDstu2.java
Original file line number Diff line number Diff line change
Expand Up @@ -536,7 +536,7 @@ private static Entry encounter(Person person, Entry personEntry,
if (encounter.codes.isEmpty()) {
// wellness encounter
encounterResource.addType().addCoding().setCode("86013001")
.setDisplay("Encounter for check up").setSystem(SNOMED_URI);
.setDisplay("Periodic reevaluation and management of healthy individual (procedure)").setSystem(SNOMED_URI);
} else {
Code code = encounter.codes.get(0);
encounterResource.addType(mapCodeToCodeableConcept(code, SNOMED_URI));
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/mitre/synthea/export/FhirR4.java
Original file line number Diff line number Diff line change
Expand Up @@ -901,7 +901,7 @@ private static BundleEntryComponent encounter(Person person, BundleEntryComponen
if (encounter.codes.isEmpty()) {
// wellness encounter
encounterResource.addType().addCoding().setCode("86013001")
.setDisplay("Encounter for check up").setSystem(SNOMED_URI);
.setDisplay("Periodic reevaluation and management of healthy individual (procedure)").setSystem(SNOMED_URI);
} else {
Code code = encounter.codes.get(0);
encounterResource.addType(mapCodeToCodeableConcept(code, SNOMED_URI));
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/mitre/synthea/export/FhirStu3.java
Original file line number Diff line number Diff line change
Expand Up @@ -584,7 +584,7 @@ private static BundleEntryComponent encounter(Person person, BundleEntryComponen
if (encounter.codes.isEmpty()) {
// wellness encounter
encounterResource.addType().addCoding().setCode("86013001")
.setDisplay("Encounter for check up").setSystem(SNOMED_URI);
.setDisplay("Periodic reevaluation and management of healthy individual (procedure)").setSystem(SNOMED_URI);

} else {
Code code = encounter.codes.get(0);
Expand Down

0 comments on commit 0cb4023

Please sign in to comment.