Skip to content

Commit 2dc36f9

Browse files
committed
Closes #4550
Signed-off-by: Senula88 <[email protected]>
1 parent 1b6f8b6 commit 2dc36f9

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/main/java/com/divudi/bean/clinical/PatientEncounterController.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -733,7 +733,7 @@ public void createNewResultReport(ClinicalFindingValue pf) {
733733

734734
patientReportController.setCurrentPtIx(currentPtIx);
735735
patientReportController.createNewReport(currentPtIx);
736-
pf.setPatientReport(currentPatientReport);
736+
pf.setPatientReport(patientReportController.getCurrentPatientReport());
737737
}
738738

739739

src/main/webapp/emr/opd_visit.xhtml

+2-2
Original file line numberDiff line numberDiff line change
@@ -643,8 +643,8 @@
643643
var="ix" class="w-100">
644644
<p:column headerText="Procedure" >
645645
<h:outputLabel value="#{ix.itemValue.name}"></h:outputLabel>
646-
647646
</p:column>
647+
648648
<p:column headerText="Details">
649649
<h:outputLabel value="#{ix.lobValue}"></h:outputLabel>
650650
</p:column>
@@ -655,7 +655,7 @@
655655
action="/emr/patient_report">
656656
<f:setPropertyActionListener value="#{ix}" target="#{patientEncounterController.currentEIResult}"></f:setPropertyActionListener>
657657
<f:setPropertyActionListener value="#{ix}" target="#{patientReportController.clinicalFindingValue}"/>
658-
<f:setPropertyActionListener value="#{ix.patientReport}" target="#{patientReportController.currentPatientReport}"/>
658+
<f:setPropertyActionListener value="#{ix.patientReport}" target="#{patientReportController.currentPatientReport}"></f:setPropertyActionListener>
659659
<p:graphicImage library="image" styleClass="standedicon" name="data_entry.png" ></p:graphicImage>
660660
</p:commandLink>
661661
<p:commandButton

0 commit comments

Comments
 (0)