Skip to content

Commit

Permalink
minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mozzy11 committed Nov 2, 2023
1 parent 67308d6 commit 2f81c53
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,8 @@ private void setOrderNumberFromLIS(List<Reference> basedOn) {
}
}
catch (ResourceNotFoundException e) {
log.error("Could not Fetch ServiceRequest/" + serviceRequestUuid + ":" + e.toString() + getStackTrace(e));
log.error(
"Could not Fetch ServiceRequest/" + serviceRequestUuid + ":" + e.toString() + getStackTrace(e));
}
}
}
Expand Down
12 changes: 6 additions & 6 deletions omod/src/main/resources/config.xml
Original file line number Diff line number Diff line change
Expand Up @@ -54,12 +54,12 @@
<globalProperty>
<property>@[email protected]</property>
<description>The URL for an LIS system like OpenELIS system to communicate with</description>
<defaultValue>http://openhim-core:5001/fhir/</defaultValue>
<defaultValue>http://172.17.0.1:8081/fhir</defaultValue>
</globalProperty>
<globalProperty>
<property>@[email protected]</property>
<description>UUID for the service user that represents a LIS like OpenELIS</description>
<defaultValue>738185ba-eac9-11e5-8f4d-e06995eac916</defaultValue>
<defaultValue>f9badd80-ab76-11e2-9e96-0800200c9a66</defaultValue>
</globalProperty>
<globalProperty>
<property>@[email protected]</property>
Expand Down Expand Up @@ -104,7 +104,7 @@
<globalProperty>
<property>@[email protected]</property>
<description>Patient Identifier used to generate the FHIR Identifier System</description>
<defaultValue>6b6e9d94-015b-48f6-ac95-da239512ff91</defaultValue>
<defaultValue>05a29f94-c0ed-11e2-94be-8c13b969e334</defaultValue>
</globalProperty>

<globalProperty>
Expand All @@ -122,18 +122,18 @@
<globalProperty>
<property>@[email protected]</property>
<description>The OpenMRS object type that should trigger LIS synchronization - either Encounter or Order.</description>
<defaultValue>Order</defaultValue>
<defaultValue>Encounter</defaultValue>
</globalProperty>

<globalProperty>
<property>@[email protected]</property>
<description>Allows Adding Obs as Task Input</description>
<defaultValue>true</defaultValue>
<defaultValue>false</defaultValue>
</globalProperty>

<globalProperty>
<property>@[email protected]</property>
<description>Allows filtering Oders by Test Uuuids</description>
<defaultValue>false</defaultValue>
<defaultValue>true</defaultValue>
</globalProperty>
</module>

0 comments on commit 2f81c53

Please sign in to comment.