Skip to content

Commit

Permalink
Merge pull request #5939 from hmislk/Issue#5934
Browse files Browse the repository at this point in the history
Issue#5934 Closes #5934
  • Loading branch information
Irani96 committed Jun 22, 2024
2 parents ce97881 + 2acdffc commit c46c562
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/counter.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
6
6
2 changes: 1 addition & 1 deletion src/main/resources/VERSION.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.0.0.20240622.6
3.0.0.20240622.6
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
<h:outputLabel value="Payment Method"/>
<p:selectOneMenu value="#{opdMemberShipDiscountController.paymentMethod}" >
<f:selectItem itemLabel="Select" />
<f:selectItems value="#{enumController.paymentMethods}" />
<f:selectItems value="#{enumController.allPaymentMethods}" />
</p:selectOneMenu>
<h:outputLabel value="Discount" ></h:outputLabel>
<p:inputText autocomplete="off" value="#{opdMemberShipDiscountController.margin}" />
Expand Down Expand Up @@ -94,7 +94,7 @@
<p:column headerText="Payment Method">
<p:selectOneMenu value="#{a.paymentMethod}" >
<f:selectItem itemLabel="Select" />
<f:selectItems value="#{enumController.paymentMethods}" />
<f:selectItems value="#{enumController.allPaymentMethods}" />
</p:selectOneMenu>
</p:column>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
<h:outputLabel value="Payment Method"/>
<p:selectOneMenu value="#{opdMemberShipDiscountController.paymentMethod}" >
<f:selectItem itemLabel="Select" />
<f:selectItems value="#{enumController.paymentMethods}" />
<f:selectItems value="#{enumController.allPaymentMethods}" />
</p:selectOneMenu>
<h:outputLabel value="Discount" ></h:outputLabel>
<p:inputText autocomplete="off" value="#{opdMemberShipDiscountController.margin}" />
Expand Down Expand Up @@ -95,7 +95,7 @@
<p:column headerText="Payment Method">
<p:selectOneMenu value="#{a.paymentMethod}" >
<f:selectItem itemLabel="Select" />
<f:selectItems value="#{enumController.paymentMethods}" />
<f:selectItems value="#{enumController.allPaymentMethods}" />
</p:selectOneMenu>
</p:column>

Expand Down

0 comments on commit c46c562

Please sign in to comment.