Skip to content

Commit 7cce3d6

Browse files
authored
Merge pull request #64 from openo-beta/bug/fix-rx-print-tel-no-seperator
Fix: missing ":" seperator for Tel, like other sections of the JSP file
2 parents ea17458 + 127bbd3 commit 7cce3d6

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/main/webapp/oscarRx/Preview.jsp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@
180180
<input type="hidden" name="patientCityPostal"
181181
value="<%= StringEscapeUtils.escapeHtml4(patient.getCity())+ ", " + StringEscapeUtils.escapeHtml4(patient.getProvince()) + " " + StringEscapeUtils.escapeHtml4(patient.getPostal())%>"/>
182182
<input type="hidden" name="patientPhone"
183-
value="<fmt:setBundle basename="oscarResources"/><fmt:message key="RxPreview.msgTel"/><%=StringEscapeUtils.escapeHtml4(patient.getPhone()) %>"/>
183+
value="<fmt:setBundle basename="oscarResources"/><fmt:message key="RxPreview.msgTel"/>: <%=StringEscapeUtils.escapeHtml4(patient.getPhone()) %>"/>
184184

185185
<input type="hidden" name="rxDate"
186186
value="<%= StringEscapeUtils.escapeHtml4(RxUtil.DateToString(rxDate, "MMMM d, yyyy")) %>"/>

src/main/webapp/oscarRx/Preview2.jsp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -421,7 +421,7 @@
421421
value="<%=StringEscapeUtils.escapeHtml4(ptChartNo)%>"/>
422422
<input type="hidden" name="bandNumber" value="${ bandNumber }"/>
423423
<input type="hidden" name="patientPhone"
424-
value="<fmt:setBundle basename="oscarResources"/><fmt:message key="RxPreview.msgTel"/><%=StringEscapeUtils.escapeHtml4(patientPhone) %>"/>
424+
value="<fmt:setBundle basename="oscarResources"/><fmt:message key="RxPreview.msgTel"/>: <%=StringEscapeUtils.escapeHtml4(patientPhone) %>"/>
425425
<input type="hidden" name="rxDate"
426426
value="<%= StringEscapeUtils.escapeHtml4(RxUtil.DateToString(rxDate, "MMMM d, yyyy")) %>"/>
427427
<input type="hidden" name="sigDoctorName"

0 commit comments

Comments
 (0)