Skip to content
Open
Show file tree
Hide file tree
Changes from 5 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 @@ -109,6 +109,7 @@ public void install() throws Exception {
install(EncounterTypes.PROCEDURE_RESULTS_ENCOUNTER);
install(EncounterTypes.HIV_SELF_TESTING_ENCOUNTER);
install(EncounterTypes.HTS_CONTACT_TRACING_ENCOUNTER);
install(EncounterTypes.GENERAL_CLINICAL_ASSESSMENT_ENCOUNTER);


//installing programs metadata
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -658,4 +658,20 @@ public String uuid() {
return "3849c43c-f14d-40ab-80d7-670cf251e525";
}
};

public static EncounterTypeDescriptor GENERAL_CLINICAL_ASSESSMENT_ENCOUNTER = new EncounterTypeDescriptor() {
@Override
public String name() {
return "General Clinical Assessment Encounter";
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Keep the name as general Clinical Assessment

}

@Override
public String description() {
return "This is a general cinical assessment encounter type";
}

public String uuid() {
return "7b2eed30-59cb-4a0e-9741-a568952b3d76";
}
};
}
Loading