File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 14
14
<parent >
15
15
<groupId >ca.uhn.hapi.fhir</groupId >
16
16
<artifactId >hapi-fhir</artifactId >
17
- <version >7.3.14-SNAPSHOT </version >
17
+ <version >7.4.0 </version >
18
18
</parent >
19
19
20
20
<artifactId >hapi-fhir-jpaserver-starter</artifactId >
Original file line number Diff line number Diff line change @@ -87,7 +87,8 @@ Content-Type: application/json
87
87
});
88
88
const batch_patient_location = response.body.entry[0].response.location;
89
89
const indexOfHistory = batch_patient_location.lastIndexOf("/_history");
90
- trimmed_location = batch_patient_location.substring(0, indexOfHistory);
90
+ client.log("Batch Patient Location: " + batch_patient_location);
91
+ var trimmed_location = batch_patient_location.substring(0, indexOfHistory);
91
92
trimmed_location = trimmed_location.replace("Patient/", "")
92
93
client.global.set("batch_patient_id", trimmed_location);
93
94
%}
You can’t perform that action at this time.
0 commit comments