Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

U4X-681: Adding HMIS XXX HIV- Self Test (HIVST) Form #577

Open
wants to merge 1 commit into
base: tools-2024
Choose a base branch
from
Open
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 @@ -102,6 +102,7 @@ public void install() throws Exception {
install(EncounterTypes.REGISTRATION);
install(EncounterTypes.MEDICATION_ORDER);
install(EncounterTypes.TB_SCREENING_ENCOUNTER);
install(EncounterTypes.HIV_SELF_TESTING_ENCOUNTER);


//installing programs metadata
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -594,4 +594,20 @@ public String uuid() {
return "08478ad9-ccc1-4cbe-9e55-473447984158";
}
};

public static EncounterTypeDescriptor HIV_SELF_TESTING_ENCOUNTER = new EncounterTypeDescriptor() {
@Override
public String name() {
return "TB Screening";
}

@Override
public String description() {
return "Encounter type for to record clients accessing HIV Self-Test kits at Health facility and community distribution points";
}

public String uuid() {
return "b75fc5be-83a6-4771-afae-87d1b68af4f7";
}
};
}
Loading