]> git.mxchange.org Git - pizzaservice-war.git/blob - web/finished.jsp
Introduced new "getter" + moved div tag to menu.jsp
[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="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 from products
69                                                 Iterator<Map.Entry<String, Product>> iterator = app.getProductsIterator();
70
71                                                 // Iterate over all
72                                                 while (iterator.hasNext()) {
73                                                         // Get entry
74                                                         Map.Entry<String, Product> entry = iterator.next();
75
76                                                         // Get product
77                                                         Product product = entry.getValue();
78
79                                                         // Mark product as ordered
80                                                         app.markProductAsOrdered(product, session);
81                                                         %>
82                                                         <tr>
83                                                                 <td>
84                                                                         <%=app.getPrintableChoosenFromRequestSession(product, request, session)%>
85                                                                 </td>
86                                                                 <td>
87                                                                         <%=app.handleAmountFromRequestSession(product, request, session)%>
88                                                                 </td>
89                                                                 <td>
90                                                                         <%=product.getTitle()%>
91                                                                 </td>
92                                                                 <td>
93                                                                         <%=product.getPrice()%>
94                                                                 </td>
95                                                                 <td>
96                                                                         <%=app.getTotalPositionPriceFromRequestSession(product, request, session)%>
97                                                                 </td>
98                                                         </tr>
99                                                         <%
100                                                 }
101                                                 float totalPrice = app.calculateTotalPrice(request, session);
102                                                 %>
103                                                 <tr>
104                                                         <td id="table_total_amount_left">
105                                                                 Menge:
106                                                         </td>
107                                                         <td id="table_total_amount_right">
108                                                                 <%=app.calculateTotalAmount(request, session)%>
109                                                         </td>
110                                                         <td class="spacer">
111                                                                 &nbsp;
112                                                         </td>
113                                                         <td id="table_total_sum_left">
114                                                                 Gesamtpreis:
115                                                         </td>
116                                                         <td id="table_total_sum_right">
117                                                                 <%=totalPrice%>
118                                                         </td>
119                                                 </tr>
120
121                                                 <tr>
122                                                         <td colspan="5" class="table_header">
123                                                                 Ihre Daten:
124                                                         </td>
125                                                 </tr>
126
127                                                 <tr>
128                                                         <td colspan="5" class="table_row">
129                                                                 <%
130                                                                 // Debug message
131                                                                 app.getLogger().debug("customer=" + customer);
132
133                                                                 // Get iterator on all fields/attributes
134                                                                 Iterator<Map.Entry<Field, Object>> fieldIterator = customer.iterator();
135                                                                 %>
136                                                                 <ul>
137                                                                 <%
138                                                                 while (fieldIterator.hasNext()) {
139                                                                         Map.Entry<Field, Object> entry = fieldIterator.next();
140                                                                         %>
141                                                                         <li><%=entry.getKey().getName()%> set to: <%=entry.getValue()%></li>
142                                                                         <%
143                                                                 }
144                                                                 %>
145                                                                 </ul>
146                                                         </td>
147                                                 </tr>
148
149                                                 <tr>
150                                                         <td colspan="5" class="table_footer">
151                                                                 <%
152                                                                 if (("POST".equals(request.getMethod())) && (app.calculateTotalAmount(request, session) > 0)) {
153                                                                         out.print("Ihre Bestellung ist eingegangen.");
154                                                                         synchronized(session) {
155                                                                                 //session.invalidate();
156                                                                                 out.print("<div>Zu Demo-Zwecken wird die Sitzung nicht gekillt. Bitte 'Bestellung' aufrufen, um zu gucken, dass die Daten da sind.</div>");
157                                                                         }
158                                                                 } else {
159                                                                         // Nothing ordered
160                                                                         out.print("Keine Bestellung aufgegeben.");
161                                                                 }
162                                                                 %>
163                                                         </td>
164                                                 </tr>
165                                         </tbody>
166                                 </table>
167                         </div>
168                 </div>
169         </body>
170 </html>