-
Notifications
You must be signed in to change notification settings - Fork 92
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9818 from hmislk/bill_type_atomic_for_theatre_iss…
- Loading branch information
Showing
9 changed files
with
179 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,107 @@ | ||
<?xml version='1.0' encoding='UTF-8' ?> | ||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | ||
<html xmlns="http://www.w3.org/1999/xhtml" | ||
xmlns:ui="http://xmlns.jcp.org/jsf/facelets" | ||
xmlns:h="http://xmlns.jcp.org/jsf/html" | ||
xmlns:p="http://primefaces.org/ui" | ||
xmlns:f="http://xmlns.jcp.org/jsf/core" | ||
xmlns:bil="http://xmlns.jcp.org/jsf/composite/bill" | ||
xmlns:phi="http://xmlns.jcp.org/jsf/composite/pharmacy/inward" | ||
xmlns:bill="http://xmlns.jcp.org/jsf/composite/inward"> | ||
<h:body> | ||
<ui:composition template="/resources/template/template.xhtml"> | ||
<ui:define name="content"> | ||
|
||
<div class="row" > | ||
<div class="col-2 p-1" > | ||
<h:form > | ||
<p:panelGrid columns="1" layout="tabular" class="m-1 w-100"> | ||
<f:facet name="header" > | ||
<h:outputLabel value="Pharmacy Issues for Theatre" ></h:outputLabel> | ||
</f:facet> | ||
<p:commandButton | ||
value="Direct Issue" | ||
styleClass="w-100" | ||
action="/theater/inward_bill_surgery_issue?faces-redirect=true" | ||
actionListener="#{pharmacySaleBhtController.makeNull()}" | ||
rendered="#{webUserController.hasPrivilege('TheaterIssuePharmacy')}" | ||
icon="pi pi-check" | ||
ajax="false"/> | ||
|
||
<p:commandButton | ||
value="Search Direct Issues" | ||
class="w-100" | ||
action="/inward/pharmacy_search_sale_bill_bht?faces-redirect=true" | ||
actionListener="#{searchController.makeListNull}" | ||
rendered="#{webUserController.hasPrivilege('TheaterIssuePharmacy')}" | ||
icon="pi pi-search" | ||
ajax="false"/> | ||
<p:commandButton | ||
value="Search Direct Issue Items" | ||
class="w-100" | ||
action="/inward/pharmacy_search_sale_bill_item_bht?faces-redirect=true" | ||
actionListener="#{searchController.makeListNull}" | ||
rendered="#{webUserController.hasPrivilege('TheaterIssuePharmacy')}" | ||
icon="pi pi-search-plus" | ||
ajax="false"/> | ||
<p:commandButton | ||
value="Search Direct Issue Returns" | ||
class="w-100" | ||
action="/inward/pharmacy_search_return_bill_bht?faces-redirect=true" | ||
actionListener="#{searchController.makeListNull}" | ||
rendered="#{webUserController.hasPrivilege('TheaterIssuePharmacy')}" | ||
icon="pi pi-search-minus" | ||
ajax="false"/> | ||
<p:commandButton | ||
value="Search Direct Issue Return Items" | ||
class="w-100" | ||
action="/inward/pharmacy_search_return_bill_bht?faces-redirect=true" | ||
actionListener="#{searchController.makeListNull}" | ||
rendered="#{webUserController.hasPrivilege('TheaterIssuePharmacy')}" | ||
icon="pi pi-search-minus" | ||
ajax="false"/> | ||
|
||
</p:panelGrid> | ||
<p:panelGrid columns="1" layout="tabular" class="m-1 w-100"> | ||
<f:facet name="header" > | ||
<h:outputLabel value="Store Issues for Theatre" ></h:outputLabel> | ||
</f:facet> | ||
|
||
<p:commandButton | ||
value="Direct Issue" | ||
class="w-100" | ||
action="/store/store_retail_sale_bht?faces-redirect=true" | ||
actionListener="#{pharmacySaleBhtController.resetAll()}" | ||
rendered="#{webUserController.hasPrivilege('TheaterIssueStoreBhtBilling')}" | ||
icon="pi pi-shopping-cart" | ||
ajax="false"/> | ||
<p:commandButton | ||
value="Search Issue Bill" | ||
class="w-100" | ||
action="/store/store_search_sale_bill_bht?faces-redirect=true" | ||
actionListener="#{searchController.makeListNull}" | ||
rendered="#{webUserController.hasPrivilege('TheaterIssueStoreBhtSearchBill')}" | ||
icon="pi pi-search" | ||
ajax="false"/> | ||
<p:commandButton | ||
value="Search Issue Bill Items" | ||
class="w-100" | ||
action="/store/store_search_sale_bill_item_bht?faces-redirect=true" | ||
actionListener="#{searchController.makeListNull}" | ||
rendered="#{webUserController.hasPrivilege('TheaterIssueStoreBhtSearchBillItem')}" | ||
icon="pi pi-search-plus" | ||
ajax="false"/> | ||
</p:panelGrid> | ||
</h:form> | ||
</div> | ||
<div class="col-10 p-1" > | ||
<ui:insert name="subcontent" > | ||
|
||
</ui:insert> | ||
</div> | ||
</div> | ||
|
||
</ui:define> | ||
</ui:composition> | ||
</h:body> | ||
</html> |