Skip to content

Commit

Permalink
Merge pull request #4665 from hmislk/Issue#4655
Browse files Browse the repository at this point in the history
Fixed #4655
  • Loading branch information
PasinduW99 authored Apr 19, 2024
2 parents 88fe163 + 9c6756e commit d7d6d24
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/main/webapp/channel/manage_booking.xhtml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@
<p:tabView id="detail">
<p:tab title="Booking" id="booking">
<h:panelGrid columns="2" >

<p:panel header="Booking" rendered="#{bookingController.selectedBillSession.bill.paidBill eq null and bookingController.selectedBillSession.bill.balance ne 0.0}">
<div class="ui-message-error ui-widget ui-corner-all">
<span class="ui-message-error-icon"/>
Expand Down Expand Up @@ -254,9 +253,9 @@
</h:panelGrid>
</p:panel>

<p:panel header="Settling" rendered="#{(bookingController.selectedBillSession.bill.paidBill ne bookingController.selectedBillSession.bill) and bookingController.selectedBillSession.bill.balance eq 0.0}">
<p:panel header="Settling" class="mx-4" style="margin-bottom: 40%" rendered="#{(bookingController.selectedBillSession.bill.paidBill ne bookingController.selectedBillSession.bill) and bookingController.selectedBillSession.bill.balance eq 0.0}">
<h:panelGrid columns="2">
<p:outputLabel value="Bill Id"/>
<p:outputLabel value="Bill ID"/>
<p:outputLabel value="#{bookingController.selectedBillSession.bill.paidBill.insId}"/>
<p:outputLabel value="Payment Method"/>
<p:outputLabel value="#{bookingController.selectedBillSession.bill.paidBill.paymentMethod}"/>
Expand All @@ -273,7 +272,6 @@
</p:outputLabel>
</h:panelGrid>
</p:panel>

</h:panelGrid>

</p:tab>
Expand Down

0 comments on commit d7d6d24

Please sign in to comment.