Skip to content

Commit

Permalink
Merge pull request #2013 from patryllus/feat/AddedMissingRegimens
Browse files Browse the repository at this point in the history
Added two missing regimens : TAF+3TC+DTG and TAF for First line Adult…
  • Loading branch information
makombe authored Sep 26, 2024
2 parents 21ec798 + 966a7f0 commit 0ef8055
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -572,7 +572,16 @@ public static String getRegimenConceptJson() {
" \"name\": \"ABC/3TC/RAL\",\n" +
" \"conceptRef\": \"7af7ebbe-99da-4a43-a23a-c3866c5d08db\",\n" +
" \"regimenLine\": \"Child (first line)\"\n" +
" }\n" +
" },\n" +
" {\n" +
" \"name\": \"TAF/3TC/DTG\",\n" +
" \"conceptRef\": \"a7c25c03-3fe6-41b5-97a1-5b2abaae84fa\",\n" +
" \"regimenLine\": \"Adult (first line)\"\n" +
" },\n" +" {\n" +
" \"name\": \"TAF\",\n" +
" \"conceptRef\": \"c0854602-6e51-422e-a4e5-45e263e9d3e0\",\n" +
" \"regimenLine\": \"Adult (first line)\"\n" +
" }\n" +
"]";
return json;
}
Expand Down
10 changes: 9 additions & 1 deletion api/src/main/resources/regimens.xml
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,14 @@
<component drugCode="3TC" />
<component drugCode="DTG" />
</regimen>
<regimen name="TAF/3TC/DTG" conceptRef="a7c25c03-3fe6-41b5-97a1-5b2abaae84fa" orderSetRef="9cbdad88-c867-4a67-859e-60172733085d">
<component drugCode="TAF" />
<component drugCode="3TC" />
<component drugCode="DTG" />
</regimen>
<regimen name="TAF" conceptRef="c0854602-6e51-422e-a4e5-45e263e9d3e0" orderSetRef="6d05e06c-2624-4fbf-925b-6dbbd713bd17">
<component drugCode="TAF" />
</regimen>
</group>

<!-- Adult second line -->
Expand Down Expand Up @@ -565,4 +573,4 @@
</group>

</category>
</regimens>
</regimens>

0 comments on commit 0ef8055

Please sign in to comment.