Skip to content

Commit

Permalink
Merge pull request #6604 from hmislk/Issue#6569
Browse files Browse the repository at this point in the history
closes#6569 Closes #6569
  • Loading branch information
Irani96 authored Jul 26, 2024
2 parents 2e8743a + 263b230 commit b046db9
Showing 1 changed file with 16 additions and 17 deletions.
33 changes: 16 additions & 17 deletions src/main/webapp/opd/opd_bill.xhtml
Original file line number Diff line number Diff line change
Expand Up @@ -61,22 +61,21 @@
id="ccPatientDetails"
editable="true"
controller="#{opdBillController}"/>
<p:panel class="my-2">
<h:panelGroup rendered="#{configOptionApplicationController.getBooleanValueByKey('Allow Local Number For Opd Billing')}">
<div class="d-flex align-items-center justify-content-center">
<p:outputLabel value="Local NUmber :"/>
<p:inputText
value="#{opdBillController.localNumber}"
placeholder="Local Number"
class="my-1"
id="lcNumber"/>
</div>
</h:panelGroup>

<p:panel class="mt-2" rendered="#{configOptionApplicationController.getBooleanValueByKey('Allow Local Number For Opd Billing')}">
<div class="d-flex">
<p:outputLabel style="width: 150px;" class="mt-2" value="Local Number :"/>
<p:inputText
value="#{opdBillController.localNumber}"
placeholder="Local Number"
class="my-1 w-100"
id="lcNumber"/>
</div>
</p:panel>

<p:panel
id='pIxAdd'
class="w-100 form">
class="w-100 mt-2 form">
<f:facet name="header" >
<h:outputText styleClass="fa-solid fa-circle-plus" /> <!-- FontAwesome Icon -->
<h:outputText value="Add New Item" class="mx-4"></h:outputText>
Expand Down Expand Up @@ -581,7 +580,7 @@
</div>
<div class="col-md-6" >

<p:panel class="m-1">
<p:panel class="mb-2">
<f:facet name="header" >
<h:outputText styleClass="fa fa-money-bill-wave" /> <!-- FontAwesome Icon -->
<h:outputText value="Payment Details" class="mx-4"></h:outputText>
Expand Down Expand Up @@ -952,8 +951,8 @@

</h:panelGrid>
</p:panel>

<p:panel id="panelWorkingStaff" class="m-1" >
<p:panel id="panelWorkingStaff" class="m-1" rendered="#{configOptionApplicationController.getBooleanValueByKey('OPD Bill - Show the Doctor Details')}">
<f:facet name="header" >
<h:outputText styleClass="fa fa-money-bill-wave" /> <!-- FontAwesome Icon -->
<h:outputText value="Doctor Details" class="mx-4"></h:outputText>
Expand All @@ -968,7 +967,7 @@
</p:panel>


<p:panel id="panelBillReferrals" >
<p:panel id="panelBillReferrals" class="mt-2">
<f:facet name="header" >
<h:outputText styleClass="fa fa-stethoscope" /> <!-- FontAwesome Icon -->
<h:outputText value="Referral Details" class="mx-4"></h:outputText>
Expand Down

0 comments on commit b046db9

Please sign in to comment.