Skip to content

Commit

Permalink
Merge pull request #4601 from hmislk/Issue#4278
Browse files Browse the repository at this point in the history
Fixed #4278 Closes #4278
  • Loading branch information
DeshaniPubudu authored Apr 17, 2024
2 parents 17b0459 + 71fa7a7 commit 8b262cd
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,7 @@ public class ChannelReportController implements Serializable {
double hospitalFeeBilledTotal;
double hospitalFeeCancellededTotal;
double hospitalFeeRefundededTotal;
private int channelReportMenuIndex;
List<String1Value3> valueList;
ReportKeyWord reportKeyWord;
Date fromDate;
Expand Down Expand Up @@ -4165,6 +4166,14 @@ public void setSessionInstance(SessionInstance sessionInstance) {
this.sessionInstance = sessionInstance;
}

public int getChannelReportMenuIndex() {
return channelReportMenuIndex;
}

public void setChannelReportMenuIndex(int channelReportMenuIndex) {
this.channelReportMenuIndex = channelReportMenuIndex;
}

public class ChannelReportColumnModelBundle implements Serializable {

List<ChannelReportColumnModel> rows;
Expand Down
2 changes: 1 addition & 1 deletion src/main/webapp/channel/manage_booking.xhtml
Original file line number Diff line number Diff line change
Expand Up @@ -397,7 +397,7 @@
<p:outputLabel value="#{bi.feeValue}"/>
</p:column>
<p:column headerText="Return Value">
<p:inputText value="#{bi.tmpChangedValue}" disabled="#{sessionController.institutionPreference.applicationInstitution eq 'Ruhuna'}">
<p:inputText value="#{bi.tmpChangedValue}">
<f:ajax execute="@this" render=":#{p:resolveFirstComponentWithId('tot',view).clientId}" event="blur" listener="#{channelBillController.calRefundTotal()}"/>
<f:ajax execute="@this" render=":#{p:resolveFirstComponentWithId('tot',view).clientId} @this" event="blur" listener="#{channelBillController.checkRefundTotal()}"/>
</p:inputText>
Expand Down

0 comments on commit 8b262cd

Please sign in to comment.