]> git.mxchange.org Git - pizzaservice-war.git/blob - web/finished.jsp
Continued with project:
[pizzaservice-war.git] / web / finished.jsp
1 <%-- 
2         Document   : finished
3         Created on : 04.08.2015, 10:55:47
4         Author     : Roland Haeder
5 --%>
6
7 <%--<%@page errorPage="errorHandler.jsp" %>--%>
8 <%@page contentType="text/html" pageEncoding="UTF-8"%>
9
10 <%@page import="java.lang.reflect.Field"%>
11 <%@page import="java.util.Map"%>
12 <%@page import="java.util.Iterator"%>
13 <%@page import="org.mxchange.pizzaapplication.application.PizzaApplication"%>
14 <%@page import="org.mxchange.pizzaapplication.application.PizzaServiceApplication"%>
15 <%@page import="org.mxchange.pizzaapplication.beans.CustomerBean" %>
16 <%@page import="org.mxchange.pizzaapplication.product.Product"%>
17
18 <jsp:useBean id="customer" scope="session" class="org.mxchange.pizzaapplication.customer.bean.PizzaServiceCustomerBean" type="CustomerBean" />
19 <jsp:setProperty name="customer" property="*" />
20
21 <%
22         // Init application instance
23         PizzaApplication app = PizzaServiceApplication.getInstance(application);
24 %>
25 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
26 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de" lang="de">
27         <head>
28                 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
29                 <link rel="stylesheet" href="<%=request.getContextPath()%>/style.css" type="text/css"/>
30                 <title><%=PizzaServiceApplication.MAIN_TITLE%> - Vielen Dank!</title>
31         </head>
32
33         <body>
34                 <div id="title">
35                         <h1><%=PizzaServiceApplication.MAIN_TITLE%> - Vielen Dank!</h1>
36                 </div>
37
38                 <jsp:include page="/static/menu.jsp" flush="true" />
39
40                 <div id="content_outer">
41                         <div id="content_title">
42                                 <h2>Folgendes haben Sie bestellt:</h2>
43                         </div>
44
45                         <div id="content">
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                                                 // Get Iterator
69                                                 Iterator<Product> iterator = app.getAvailableProducts();
70
71                                                 // "Walk" through all products and unmark them as ordered
72                                                 while (iterator.hasNext()) {
73                                                         // Get product instance
74                                                         Product product = iterator.next();
75                                                         %>
76                                                         <tr>
77                                                                 <td>
78                                                                         <%=app.getPrintableChoosenFromRequestSession(product, request, session)%>
79                                                                 </td>
80                                                                 <td>
81                                                                         <%=app.handleAmountFromRequestSession(product, request, session)%>
82                                                                 </td>
83                                                                 <td>
84                                                                         <%=product.getTitle()%>
85                                                                 </td>
86                                                                 <td>
87                                                                         <%=product.getPrice()%>
88                                                                 </td>
89                                                                 <td>
90                                                                         <%=app.getTotalPositionPriceFromRequestSession(product, request, session)%>
91                                                                 </td>
92                                                         </tr>
93                                                         <%
94                                                 }
95                                                 float totalPrice = app.calculateTotalPrice(request, session);
96                                                 %>
97                                                 <tr>
98                                                         <td id="table_total_amount_left">
99                                                                 Menge:
100                                                         </td>
101                                                         <td id="table_total_amount_right">
102                                                                 <%=app.calculateTotalAmount(request, session)%>
103                                                         </td>
104                                                         <td class="spacer">
105                                                                 &nbsp;
106                                                         </td>
107                                                         <td id="table_total_sum_left">
108                                                                 Gesamtpreis:
109                                                         </td>
110                                                         <td id="table_total_sum_right">
111                                                                 <%=totalPrice%>
112                                                         </td>
113                                                 </tr>
114
115                                                 <tr>
116                                                         <td colspan="5" class="table_header">
117                                                                 Ihre Daten:
118                                                         </td>
119                                                 </tr>
120
121                                                 <tr>
122                                                         <td colspan="5" class="table_row">
123                                                                 <%
124                                                                 // Debug message
125                                                                 app.getLogger().debug("customer=" + customer);
126
127                                                                 // Get iterator on all fields/attributes
128                                                                 Iterator<Map.Entry<Field, Object>> fieldIterator = customer.iterator();
129                                                                 %>
130                                                                 <ul>
131                                                                 <%
132                                                                 while (fieldIterator.hasNext()) {
133                                                                         Map.Entry<Field, Object> entry = fieldIterator.next();
134                                                                         %>
135                                                                         <li><%=entry.getKey().getName()%> set to: <%=entry.getValue()%></li>
136                                                                         <%
137                                                                 }
138                                                                 %>
139                                                                 </ul>
140                                                         </td>
141                                                 </tr>
142
143                                                 <tr>
144                                                         <td colspan="5" class="table_footer">
145                                                                 <%
146                                                                 if (("POST".equals(request.getMethod())) && (app.calculateTotalAmount(request, session) > 0)) {
147                                                                         out.print("Ihre Bestellung ist eingegangen.");
148                                                                         synchronized(session) {
149                                                                                 //session.invalidate();
150                                                                                 out.print("<div>Zu Demo-Zwecken wird die Sitzung nicht gekillt. Bitte 'Bestellung' aufrufen, um zu gucken, dass die Daten da sind.</div>");
151                                                                         }
152                                                                 } else {
153                                                                         // Nothing ordered
154                                                                         out.print("Keine Bestellung aufgegeben.");
155                                                                 }
156                                                                 %>
157                                                         </td>
158                                                 </tr>
159                                         </tbody>
160                                 </table>
161                         </div>
162                 </div>
163         </body>
164 </html>