]> git.mxchange.org Git - jjobs-war.git/blob - web/admin/branch_office/admin_branch_office_list.xhtml
Please cherry-pick:
[jjobs-war.git] / web / admin / branch_office / admin_branch_office_list.xhtml
1 <?xml version="1.0" encoding="UTF-8" ?>
2 <ui:composition template="/WEB-INF/templates/admin/admin_base.tpl"
3                                 xmlns="http://www.w3.org/1999/xhtml"
4                                 xmlns:widgets="http://mxchange.org/jsf/core/widgets"
5                                 xmlns:links="http://mxchange.org/jsf/core/links"
6                                 xmlns:ui="http://xmlns.jcp.org/jsf/facelets"
7                                 xmlns:h="http://xmlns.jcp.org/jsf/html"
8                                 xmlns:f="http://xmlns.jcp.org/jsf/core"
9                                 xmlns:p="http://primefaces.org/ui">
10
11         <ui:define name="admin_title">
12                 <h:outputText value="#{msg.PAGE_TITLE_ADMIN_LIST_BRANCH_OFFICES}" />
13         </ui:define>
14
15         <ui:define name="content_header">
16                 <h:outputText value="#{msg.CONTENT_TITLE_ADMIN_LIST_BRANCH_OFFICES}" />
17         </ui:define>
18
19         <ui:define name="content">
20                 <h:form id="form-list-branch-offices">
21                         <p:dataTable
22                                 id="table-list-branch-offices"
23                                 var="branchOffice"
24                                 value="#{branchOfficeController.allBranchOffices()}"
25                                 tableStyleClass="table table-full"
26                                 paginator="true"
27                                 paginatorTemplate="{CurrentPageReport} {FirstPageLink} {PreviousPageLink} {PageLinks} {NextPageLink} {LastPageLink} {RowsPerPageDropdown}"
28                                 widgetVar="branchOfficeTable"
29                                 filteredValue="#{branchOfficeController.filteredBranchOffices}"
30                                 rows="10"
31                                 reflow="true"
32                                 resizableColumns="true"
33                                 rowsPerPageTemplate="5,10,20,50,100"
34                                 sortMode="multiple"
35                                 summary="#{msg.TABLE_SUMMARY_ADMIN_LIST_BRANCH_OFFICES}"
36                                 emptyMessage="#{msg.ADMIN_BRANCH_OFFICES_LIST_EMPTY}"
37                                 widgetVar="branchOfficeList"
38                                 >
39
40                                 <f:facet name="header">
41                                         <h:outputText value="#{msg.ADMIN_LIST_BRANCH_OFFICES_HEADER}" />
42                                         <p:commandButton id="toggler" type="button" value="#{msg.SELECT_SHOWN_COLUMNS}" styleClass="column-selector" />
43                                         <p:columnToggler datasource="table-list-branch-offices" trigger="toggler" />
44                                 </f:facet>
45
46                                 <p:column headerText="#{msg.ADMIN_ID_NUMBER}" sortBy="#{branchOffice.branchId}" filterBy="#{branchOffice.branchId}">
47                                         <p:link outcome="admin_show_branch_office" title="#{msg.ADMIN_LINK_SHOW_BRANCH_OFFICE_TITLE}" value="#{branchOffice.branchId}">
48                                                 <f:param name="branchId" value="#{branchOffice.branchId}" />
49                                         </p:link>
50                                 </p:column>
51
52                                 <p:column headerText="#{msg.ADMIN_ASSIGNED_USER}" sortBy="#{branchOffice.branchUserOwner.userName}" filterBy="#{branchOffice.branchUserOwner}" filterMatchMode="in">
53                                         <f:facet name="filter">
54                                                 <p:selectCheckboxMenu filter="true" filterMatchMode="contains" label="#{msg.LABEL_USERS}" onchange="PF('branchOfficeTable').filter()" updateLabel="true" title="#{msg.FILTER_BY_MULTIPLE_USERS_TITLE}">
55                                                         <f:converter converterId="UserConverter" />
56                                                         <f:selectItem itemValue="#{null}" itemLabel="#{msg.NONE_SELECTED}" />
57                                                         <f:selectItems value="#{userController.allUsers()}" var="user" itemValue="#{user}" itemLabel="#{user.userName}" />
58                                                 </p:selectCheckboxMenu>
59                                         </f:facet>
60
61                                         <p:link outcome="admin_show_user" title="#{msg.ADMIN_LINK_SHOW_BRANCH_OFFICES_OWNER_USER_TITLE}" value="#{branchOffice.branchUserOwner.userId}" rendered="#{not empty branchOffice.branchUserOwner}">
62                                                 <f:param name="userId" value="#{branchOffice.branchUserOwner.userId}" />
63                                         </p:link>
64
65                                         <p:link outcome="admin_assign_branch_office_owner" title="#{msg.ADMIN_LINK_ASSIGN_BRANCH_OFFICES_OWNER_USER_TITLE}" value="#{msg.ADMIN_LINK_ASSIGN}" rendered="#{empty branchOffice.branchUserOwner}">
66                                                 <f:param name="branchId" value="#{branchOffice.branchId}" />
67                                         </p:link>
68                                 </p:column>
69
70                                 <p:column headerText="#{msg.ADMIN_BASIC_COMPANY_DATA_COMPANY_NAME}" sortBy="#{branchOffice.branchCompany.companyName}" filterBy="#{branchOffice.branchCompany}" filterMatchMode="in">
71                                         <f:facet name="filter">
72                                                 <p:selectCheckboxMenu filter="true" filterMatchMode="contains" label="#{msg.LABEL_COMPANIES}" onchange="PF('branchOfficeTable').filter()" updateLabel="true" title="#{msg.FILTER_BY_MULTIPLE_COMPANIES_TITLE}">
73                                                         <f:converter converterId="BasicCompanyDataConverter" />
74                                                         <f:selectItems value="#{basicCompanyDataController.allCompanyBasicData()}" var="basicData" itemValue="#{basicData}" itemLabel="#{basicData.companyName}" />
75                                                 </p:selectCheckboxMenu>
76                                         </f:facet>
77
78                                         <h:outputLink value="#{branchOffice.branchCompany.companyWebsiteUrl}" target="_blank" title="#{msg.LINK_COMPANY_WEBSITE_URL_TITLE}" rel="external" rendered="#{not empty branchOffice.branchCompany.companyWebsiteUrl}">
79                                                 <h:outputText value="#{branchOffice.branchCompany.companyName}" />
80                                         </h:outputLink>
81
82                                         <h:outputText value="#{branchOffice.branchCompany.companyName}" title="#{msg.NO_WEBSITE_URL_ENTERED}" rendered="#{empty branchOffice.branchCompany.companyWebsiteUrl}" />
83                                 </p:column>
84
85                                 <p:column headerText="#{msg.DATA_EMAIL_ADDRESS}" sortBy="#{branchOffice.branchEmailAddress}" filterBy="#{branchOffice.branchEmailAddress}" filterMatchMode="contains">
86                                         <h:outputLink value="mailto:#{branchOffice.branchEmailAddress}" rendered="#{not empty branchOffice.branchEmailAddress}" />
87
88                                         <h:outputText value="#{msg.NO_EMAIL_ADDRESS_ENTERED}" rendered="#{empty branchOffice.branchEmailAddress}" />
89                                 </p:column>
90
91                                 <p:column headerText="#{msg.DATA_ADDRESS}" sortBy="#{branchOffice.branchCity}" filterBy="#{branchOffice.branchCity}" filterMatchMode="contains">
92                                         <h:outputText value="#{branchOffice.branchZipCode} #{branchOffice.branchCity}" title="#{branchOffice.branchStreet} #{branchOffice.branchHouseNumber} (#{msg.DATA_STORE} #{branchOffice.branchStore}, #{msg.DATA_SUITE_NUMBER} #{branchOffice.branchSuiteNumber})" />
93                                 </p:column>
94
95                                 <p:column headerText="#{msg.ADMIN_CONTACT_PERSON}" sortBy="#{branchOffice.branchContactEmployee.employeePersonalData.contactFamilyName}" filterBy="#{branchOffice.branchContactEmployee}" filterMatchMode="in">
96                                         <f:facet name="filter">
97                                                 <p:selectCheckboxMenu filter="true" filterMatchMode="contains" label="#{msg.LABEL_COMPANY_EMPLOYEES}" onchange="PF('branchOfficeTable').filter()" updateLabel="true" title="#{msg.FILTER_BY_MULTIPLE_COMPANY_EMPLOYEES_TITLE}">
98                                                         <f:converter converterId="CompanyEmployeeConverter" />
99                                                         <f:selectItem itemValue="#{null}" itemLabel="#{msg.NONE_SELECTED}" />
100                                                         <f:selectItems value="#{companyEmployeeController.allCompanyEmployees()}" var="employee" itemValue="#{employee}" itemLabel="#{employee.employeePersonalData.contactFirstName} #{employee.employeePersonalData.contactFamilyName}" />
101                                                 </p:selectCheckboxMenu>
102                                         </f:facet>
103
104                                         <p:link outcome="admin_show_business_employee" title="#{msg.ADMIN_LINK_SHOW_BRANCH_OFFICES_CONTACT_PERSON_TITLE}" value="#{branchOffice.branchContactEmployee.employeeId}" rendered="#{not empty branchOffice.branchContactEmployee}">
105                                                 <f:param name="employeeId" value="#{branchOffice.branchContactEmployee.employeeId}" />
106                                         </p:link>
107
108                                         <p:link outcome="admin_assign_branch_office_employee" title="#{msg.ADMIN_LINK_ASSIGN_BRANCH_OFFICES_CONTACT_PERSON_TITLE}" value="#{msg.ADMIN_LINK_ASSIGN}" rendered="#{empty branchOffice.branchContactEmployee}">
109                                                 <f:param name="branchId" value="#{branchOffice.branchId}" />
110                                         </p:link>
111                                 </p:column>
112
113                                 <p:column headerText="#{msg.ADMIN_LIST_ENTRY_CREATED}" sortBy="#{branchOffice.branchCreated}">
114                                         <h:outputText id="branchCreated" value="#{branchOffice.branchCreated.time}">
115                                                 <f:convertDateTime for="branchCreated" type="both" timeStyle="short" dateStyle="short" />
116                                         </h:outputText>
117                                 </p:column>
118
119                                 <p:column headerText="#{msg.ADMIN_ACTION_LINKS}" sortable="false">
120                                         <links:outputBranchOfficeAdminMiniLinks branchOffice="#{branchOffice}" />
121                                 </p:column>
122                         </p:dataTable>
123                 </h:form>
124
125                 <h:form id="form-admin-add-branch-office">
126                         <p:panelGrid columns="1" styleClass="table table-full" layout="grid">
127                                 <h:panelGroup styleClass="table-header" layout="block">
128                                         <h4>
129                                                 <h:outputText value="#{msg.ADMIN_ADD_BRANCH_OFFICE_TITLE}" />
130                                         </h4>
131                                 </h:panelGroup>
132
133                                 <h:panelGroup styleClass="para" layout="block">
134                                         <h:outputText value="#{msg.ADMIN_ADD_BRANCH_OFFICE_MINIMUM_DATA}" />
135                                 </h:panelGroup>
136
137                                 <ui:include src="/WEB-INF/templates/admin/branch_office/admin_form_branch_office_data.tpl" />
138
139                                 <p:panelGrid columns="2" styleClass="table-footer" layout="block">
140                                         <p:commandButton
141                                                 styleClass="reset divider-right"
142                                                 type="reset"
143                                                 value="#{msg.BUTTON_RESET_FORM}"
144                                                 />
145
146                                         <p:commandButton
147                                                 styleClass="submit"
148                                                 type="submit"
149                                                 value="#{msg.BUTTON_ADMIN_ADD_BASIC_COMPANY_DATA}"
150                                                 action="#{adminBranchOfficeController.addBranchOffice()}"
151                                                 update=":master:form-list-branch-offices:table-list-branch-offices"
152                                                 />
153                                 </p:panelGrid>
154                         </p:panelGrid>
155                 </h:form>
156         </ui:define>
157 </ui:composition>