]> git.mxchange.org Git - pizzaservice-war.git/blob - web/preview.jsp
Continued with project:
[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="<%=request.getContextPath()%>/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/do_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                                                 // "Walk" through all products and unmark them as ordered
69                                                 for (final Product product : app.getUnmarkedProducts(session)) {
70                                                         %>
71                                                         <tr>
72                                                                 <td>
73                                                                         <%=app.getPrintableChoosenFromRequestSession(product, request, session)%>
74                                                                 </td>
75                                                                 <td>
76                                                                         <%=app.handleAmountFromRequestSession(product, request, session)%>
77                                                                 </td>
78                                                                 <td>
79                                                                         <%=product.getTitle()%>
80                                                                 </td>
81                                                                 <td>
82                                                                         <%=product.getPrice()%>
83                                                                 </td>
84                                                                 <td>
85                                                                         <%=app.getTotalPositionPriceFromRequestSession(product, request, session)%>
86                                                                 </td>
87                                                         </tr>
88                                                         <%
89                                                         // Is it choosen and amount set?
90                                                         if (app.isProductChoosen(product, request, session)) {
91                                                                 // Then mark it as choosen
92                                                                 app.markProductAsChoosen(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 id="personal_data">
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                                                                                         <jsp:include page="/static/gender_selection_box.jsp" flush="true" />
126                                                                                 </div>
127
128                                                                                 <div class="clear"></div>
129                                                                         </div>
130
131                                                                         <div class="data_row">
132                                                                                 <div class="data_left">
133                                                                                         <label for="companyname">Firmenname:</label>
134                                                                                 </div>
135
136                                                                                 <div class="data_right">
137                                                                                         <input type="text" id="companyname" name="companyName" size="15" maxlength="255" value="${customer.companyName}" <%=app.getDisabledHtmlFromSession(request, session)%> />
138                                                                                 </div>
139
140                                                                                 <div class="clear"></div>
141                                                                         </div>
142
143                                                                         <div class="data_row">
144                                                                                 <div class="data_left">
145                                                                                         <label for="surname">Vorname:</label>
146                                                                                 </div>
147
148                                                                                 <div class="data_right">
149                                                                                         <input type="text" id="surname" name="surname" size="10" maxlength="255" value="${customer.surname}" <%=app.getDisabledHtmlFromSession(request, session)%> />
150                                                                                 </div>
151
152                                                                                 <div class="clear"></div>
153                                                                         </div>
154
155                                                                         <div class="data_row">
156                                                                                 <div class="data_left">
157                                                                                         <label for="familyName">Nachname:</label>
158                                                                                 </div>
159
160                                                                                 <div class="data_right">
161                                                                                         <input type="text" id="familyName" name="familyName" size="10" maxlength="255" value="${customer.familyName}" <%=app.getDisabledHtmlFromSession(request, session)%> />
162                                                                                 </div>
163
164                                                                                 <div class="clear"></div>
165                                                                         </div>
166
167                                                                         <div class="data_row">
168                                                                                 <div class="data_left">
169                                                                                         <label for="street">Straße:</label>
170                                                                                 </div>
171
172                                                                                 <div class="data_right">
173                                                                                         <input type="text" id="street" name="street" size="20" maxlength="255" value="${customer.street}" <%=app.getDisabledHtmlFromSession(request, session)%> />
174                                                                                 </div>
175
176                                                                                 <div class="clear"></div>
177                                                                         </div>
178
179                                                                         <div class="data_row">
180                                                                                 <div class="data_left">
181                                                                                         <label for="houseNumber">Hausnummer:</label>
182                                                                                 </div>
183
184                                                                                 <div class="data_right">
185                                                                                         <input type="text" id="houseNumber" name="houseNumber" size="3" maxlength="5" value="${customer.houseNumber}" <%=app.getDisabledHtmlFromSession(request, session)%> />
186                                                                                 </div>
187
188                                                                                 <div class="clear"></div>
189                                                                         </div>
190
191                                                                         <div class="data_row">
192                                                                                 <div class="data_left">
193                                                                                         <label for="zipCode">Postleitzahl:</label>
194                                                                                 </div>
195
196                                                                                 <div class="data_right">
197                                                                                         <input type="text" id="zipCode" name="zipCode" size="5" maxlength="6" value="${customer.zipCode}" <%=app.getDisabledHtmlFromSession(request, session)%> />
198                                                                                 </div>
199
200                                                                                 <div class="clear"></div>
201                                                                         </div>
202
203                                                                         <div class="data_row">
204                                                                                 <div class="data_left">
205                                                                                         <label for="city">Ort:</label>
206                                                                                 </div>
207
208                                                                                 <div class="data_right">
209                                                                                         <input type="text" id="city" name="city" size="10" maxlength="255" value="${customer.city}" <%=app.getDisabledHtmlFromSession(request, session)%> />
210                                                                                 </div>
211
212                                                                                 <div class="clear"></div>
213                                                                         </div>
214
215                                                                         <div class="data_row">
216                                                                                 <div class="data_left">
217                                                                                         <label for="phoneNumber">Telefon:</label>
218                                                                                 </div>
219
220                                                                                 <div class="data_right">
221                                                                                         <input type="text" id="phoneNumber" name="phoneNumber" size="20" maxlength="255" value="${customer.phoneNumber}" <%=app.getDisabledHtmlFromSession(request, session)%> />
222                                                                                 </div>
223
224                                                                                 <div class="clear"></div>
225                                                                         </div>
226
227                                                                         <div class="data_row">
228                                                                                 <div class="data_left">
229                                                                                         <label for="faxNumber">Faxnummer:</label>
230                                                                                 </div>
231
232                                                                                 <div class="data_right">
233                                                                                         <input type="text" id="faxNumber" name="faxNumber" size="20" maxlength="255" value="${customer.faxNumber}" <%=app.getDisabledHtmlFromSession(request, session)%> />
234                                                                                 </div>
235
236                                                                                 <div class="clear"></div>
237                                                                         </div>
238
239                                                                         <div class="data_row">
240                                                                                 <div class="data_left">
241                                                                                         <label for="cellphoneNumber">Handy:</label>
242                                                                                 </div>
243
244                                                                                 <div class="data_right">
245                                                                                         <input type="text" id="cellphoneNumber" name="cellphoneNumber" size="20" maxlength="255" value="${customer.cellphoneNumber}" <%=app.getDisabledHtmlFromSession(request, session)%> />
246                                                                                 </div>
247
248                                                                                 <div class="clear"></div>
249                                                                         </div>
250                                                                 </fieldset>
251                                                         </td>
252                                                 </tr>
253
254                                                 <tr>
255                                                         <td colspan="5" class="table_footer">
256                                                                 <input type="reset" value="Formular zurücksetzen" />
257                                                                 <input type="submit" name="send" value="Bestellung abschliessen" <%=app.getDisabledHtmlFromSession(request, session)%> />
258                                                         </td>
259                                                 </tr>
260                                         </tbody>
261                                 </table>
262                                 </form>
263                         </div>
264                 </div>
265         </body>
266 </html>