]> git.mxchange.org Git - pizzaservice-war.git/blob - web/preview.jsp
Introduced new "getter" + moved div tag to menu.jsp
[pizzaservice-war.git] / web / preview.jsp
1 <%-- 
2         Document   : order
3         Created on : 04.08.2015, 10:55:10
4         Author     : Roland Haeder
5 --%>
6
7 <%--<%@page errorPage="errorHandler.jsp" %>--%>
8 <%@page import="java.util.Iterator"%>
9 <%@page import="java.util.Map"%>
10 <%@page import="org.mxchange.jcore.contact.Gender"%>
11 <%@page import="org.mxchange.pizzaapplication.product.Product"%>
12 <%@page import="org.mxchange.pizzaapplication.application.PizzaApplication"%>
13 <%@page import="org.mxchange.pizzaapplication.application.PizzaServiceApplication"%>
14 <%@page import="org.mxchange.pizzaapplication.beans.CustomerBean" %>
15 <%@page contentType="text/html" pageEncoding="UTF-8"%>
16
17 <jsp:useBean id="customer" scope="session" class="org.mxchange.pizzaapplication.customer.bean.PizzaServiceCustomerBean" type="CustomerBean" />
18 <jsp:setProperty name="customer" property="*" />
19
20 <%
21         // Init application instance
22         PizzaApplication app = PizzaServiceApplication.getInstance(application);
23 %>
24 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
25 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de" lang="de">
26         <head>
27                 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
28                 <link rel="stylesheet" href="style.css" type="text/css"/>
29                 <title><%=PizzaServiceApplication.MAIN_TITLE%> - Bestellung anzeigen</title>
30         </head>
31
32         <body>
33                 <div id="title">
34                         <h1><%=PizzaServiceApplication.MAIN_TITLE%> - Bestellung anzeigen</h1>
35                 </div>
36
37                 <jsp:include page="/static/menu.jsp" flush="true" />
38
39                 <div id="content_outer">
40                         <div id="content_title">
41                                 <h2>Folgendes möchten Sie bestellen:</h2>
42                         </div>
43
44                         <div id="content">
45                                 <form action="<%=request.getContextPath()%>/form_handler/order.jsp" accept-charset="utf-8" id="form" method="post">
46                                 <table class="table">
47                                         <thead class="table_header">
48                                                 <tr>
49                                                         <th class="table_header_column">
50                                                                 Bestellen?
51                                                         </th>
52                                                         <th class="table_header_column">
53                                                                 Anzahl:
54                                                         </th>
55                                                         <th class="table_header_column">
56                                                                 Produkt:
57                                                         </th>
58                                                         <th class="table_header_column">
59                                                                 Einzelpreis:
60                                                         </th>
61                                                         <th class="table_header_column">
62                                                                 Zwischensumme:
63                                                         </th>
64                                                 </tr>
65                                         </thead>
66                                         <tbody class="table_body">
67                                                 <%
68                                                 for (final Product product : app.getProducts()) {
69                                                         %>
70                                                         <tr>
71                                                                 <td>
72                                                                         <%=app.getPrintableChoosenFromRequestSession(product, request, session)%>
73                                                                 </td>
74                                                                 <td>
75                                                                         <%=app.handleAmountFromRequestSession(product, request, session)%>
76                                                                 </td>
77                                                                 <td>
78                                                                         <%=product.getTitle()%>
79                                                                 </td>
80                                                                 <td>
81                                                                         <%=product.getPrice()%>
82                                                                 </td>
83                                                                 <td>
84                                                                         <%=app.getTotalPositionPriceFromRequestSession(product, request, session)%>
85                                                                 </td>
86                                                         </tr>
87                                                         <%
88                                                         // Is it choosen and amount set?
89                                                         if (app.isProductChoosen(product, request, session)) {
90                                                                 // Then mark it as choosen
91                                                                 product.markAsChoosen();
92                                                                 app.unmarkProductAsOrdered(product, session);
93                                                         }
94                                                 }
95                                                 %>
96                                                 <tr>
97                                                         <td id="table_total_amount_left">
98                                                                 Menge:
99                                                         </td>
100                                                         <td id="table_total_amount_right">
101                                                                 <%=app.calculateTotalAmount(request, session)%>
102                                                         </td>
103                                                         <td class="spacer">
104                                                                 &nbsp;
105                                                         </td>
106                                                         <td id="table_total_sum_left">
107                                                                 Gesamtpreis:
108                                                         </td>
109                                                         <td id="table_total_sum_right">
110                                                                 <%=app.calculateTotalPrice(request, session)%>
111                                                         </td>
112                                                 </tr>
113
114                                                 <tr>
115                                                         <td colspan="5">
116                                                                 <fieldset>
117                                                                         <legend title="Bitte geben Sie Ihre Daten ein.">Bitte Ihre Daten eingeben:</legend>
118
119                                                                         <div class="data_row">
120                                                                                 <div class="data_left">
121                                                                                         <label for="gender">Anrede</label>
122                                                                                 </div>
123
124                                                                                 <div class="data_right">
125                                                                                         <select name="gender" id="gender" size="1" <%=app.getDisabledHtmlFromSession(request, session)%>>
126                                                                                                 <%
127                                                                                                 // "Walk" through all genders and output them
128                                                                                                 for (final Gender gender : Gender.values()) {
129                                                                                                         %>
130                                                                                                         <option value="<%=gender.name()%>"<%
131                                                                                                         // Get gender from bean
132                                                                                                         Gender value=  customer.getGender();
133
134                                                                                                         // Test it
135                                                                                                         if (value.equals(gender)) {
136                                                                                                                 // Output selected="selected"
137                                                                                                                 out.print("selected=\"selected\"");
138                                                                                                         }
139                                                                                                         %>><%=gender%></option>
140                                                                                                         <%
141                                                                                                 }
142                                                                                                 %> 
143                                                                                         </select>
144                                                                                 </div>
145
146                                                                                         <div class="clear"></div>
147                                                                         </div>
148
149                                                                         <div class="data_row">
150                                                                                 <div class="data_left">
151                                                                                         <label for="companyname">Firmenname:</label>
152                                                                                 </div>
153
154                                                                                 <div class="data_right">
155                                                                                         <input type="text" id="companyname" name="companyName" size="15" maxlength="255" value="${customer.companyName}" <%=app.getDisabledHtmlFromSession(request, session)%> />
156                                                                                 </div>
157
158                                                                                 <div class="clear"></div>
159                                                                         </div>
160
161                                                                         <div class="data_row">
162                                                                                 <div class="data_left">
163                                                                                         <label for="surname">Vorname:</label>
164                                                                                 </div>
165
166                                                                                 <div class="data_right">
167                                                                                         <input type="text" id="surname" name="surname" size="10" maxlength="255" value="${customer.surname}" <%=app.getDisabledHtmlFromSession(request, session)%> />
168                                                                                 </div>
169
170                                                                                 <div class="clear"></div>
171                                                                         </div>
172
173                                                                         <div class="data_row">
174                                                                                 <div class="data_left">
175                                                                                         <label for="familyName">Nachname:</label>
176                                                                                 </div>
177
178                                                                                 <div class="data_right">
179                                                                                         <input type="text" id="familyName" name="familyName" size="10" maxlength="255" value="${customer.familyName}" <%=app.getDisabledHtmlFromSession(request, session)%> />
180                                                                                 </div>
181
182                                                                                 <div class="clear"></div>
183                                                                         </div>
184
185                                                                         <div class="data_row">
186                                                                                 <div class="data_left">
187                                                                                         <label for="street">Straße:</label>
188                                                                                 </div>
189
190                                                                                 <div class="data_right">
191                                                                                         <input type="text" id="street" name="street" size="20" maxlength="255" value="${customer.street}" <%=app.getDisabledHtmlFromSession(request, session)%> />
192                                                                                 </div>
193
194                                                                                 <div class="clear"></div>
195                                                                         </div>
196
197                                                                         <div class="data_row">
198                                                                                 <div class="data_left">
199                                                                                         <label for="houseNumber">Hausnummer:</label>
200                                                                                 </div>
201
202                                                                                 <div class="data_right">
203                                                                                         <input type="text" id="houseNumber" name="houseNumber" size="3" maxlength="5" value="${customer.houseNumber}" <%=app.getDisabledHtmlFromSession(request, session)%> />
204                                                                                 </div>
205
206                                                                                 <div class="clear"></div>
207                                                                         </div>
208
209                                                                         <div class="data_row">
210                                                                                 <div class="data_left">
211                                                                                         <label for="zipCode">Postleitzahl:</label>
212                                                                                 </div>
213
214                                                                                 <div class="data_right">
215                                                                                         <input type="text" id="zipCode" name="zipCode" size="5" maxlength="6" value="${customer.zipCode}" <%=app.getDisabledHtmlFromSession(request, session)%> />
216                                                                                 </div>
217
218                                                                                 <div class="clear"></div>
219                                                                         </div>
220
221                                                                         <div class="data_row">
222                                                                                 <div class="data_left">
223                                                                                         <label for="city">Ort:</label>
224                                                                                 </div>
225
226                                                                                 <div class="data_right">
227                                                                                         <input type="text" id="city" name="city" size="10" maxlength="255" value="${customer.city}" <%=app.getDisabledHtmlFromSession(request, session)%> />
228                                                                                 </div>
229
230                                                                                 <div class="clear"></div>
231                                                                         </div>
232
233                                                                         <div class="data_row">
234                                                                                 <div class="data_left">
235                                                                                         <label for="phoneNumber">Telefon:</label>
236                                                                                 </div>
237
238                                                                                 <div class="data_right">
239                                                                                         <input type="text" id="phoneNumber" name="phoneNumber" size="20" maxlength="255" value="${customer.phoneNumber}" <%=app.getDisabledHtmlFromSession(request, session)%> />
240                                                                                 </div>
241
242                                                                                 <div class="clear"></div>
243                                                                         </div>
244
245                                                                         <div class="data_row">
246                                                                                 <div class="data_left">
247                                                                                         <label for="faxNumber">Faxnummer:</label>
248                                                                                 </div>
249
250                                                                                 <div class="data_right">
251                                                                                         <input type="text" id="faxNumber" name="faxNumber" size="20" maxlength="255" value="${customer.faxNumber}" <%=app.getDisabledHtmlFromSession(request, session)%> />
252                                                                                 </div>
253
254                                                                                 <div class="clear"></div>
255                                                                         </div>
256
257                                                                         <div class="data_row">
258                                                                                 <div class="data_left">
259                                                                                         <label for="cellphoneNumber">Handy:</label>
260                                                                                 </div>
261
262                                                                                 <div class="data_right">
263                                                                                         <input type="text" id="cellphoneNumber" name="cellphoneNumber" size="20" maxlength="255" value="${customer.cellphoneNumber}" <%=app.getDisabledHtmlFromSession(request, session)%> />
264                                                                                 </div>
265
266                                                                                 <div class="clear"></div>
267                                                                         </div>
268                                                                 </fieldset>
269                                                         </td>
270                                                 </tr>
271
272                                                 <tr>
273                                                         <td colspan="5" class="table_footer">
274                                                                 <input type="reset" value="Formular zurücksetzen" />
275                                                                 <input type="submit" name="send" value="Bestellung abschliessen" <%=app.getDisabledHtmlFromSession(request, session)%> />
276                                                         </td>
277                                                 </tr>
278                                         </tbody>
279                                 </table>
280                                 </form>
281                         </div>
282                 </div>
283         </body>
284 </html>