]> git.mxchange.org Git - pizzaservice-war.git/blobdiff - web/finished.jsp
Continued with project:
[pizzaservice-war.git] / web / finished.jsp
index 2159a12875a4831a1ad67bdb02766139f74a8a48..c2ca53b6a45f09b73115d08b294a29ec37b82ed3 100644 (file)
@@ -4,22 +4,29 @@
        Author     : Roland Haeder
 --%>
 
-<%@page import="org.mxchange.pizzaservice.application.PizzaApplication"%>
-<%@page import="org.mxchange.pizzaservice.application.PizzaServiceApplication"%>
-<%@page errorPage="errorHandler.jsp" %>
+<%--<%@page errorPage="errorHandler.jsp" %>--%>
+<%@page contentType="text/html" pageEncoding="UTF-8"%>
+
+<%@page import="java.lang.reflect.Field"%>
 <%@page import="java.util.Map"%>
 <%@page import="java.util.Iterator"%>
-<%@page import="org.mxchange.pizzaservice.product.Product"%>
-<%@page contentType="text/html" pageEncoding="UTF-8"%>
+<%@page import="org.mxchange.pizzaapplication.application.PizzaApplication"%>
+<%@page import="org.mxchange.pizzaapplication.application.PizzaServiceApplication"%>
+<%@page import="org.mxchange.pizzaapplication.beans.CustomerBean" %>
+<%@page import="org.mxchange.pizzaapplication.product.Product"%>
+
+<jsp:useBean id="customer" scope="session" class="org.mxchange.pizzaapplication.customer.bean.PizzaServiceCustomerBean" type="CustomerBean" />
+<jsp:setProperty name="customer" property="*" />
 
 <%
-       // Init service instance
-       PizzaApplication service = PizzaServiceApplication.getInstance(application);
+       // Init application instance
+       PizzaApplication app = PizzaServiceApplication.getInstance(application);
 %>
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de" lang="de">
        <head>
                <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
+               <link rel="stylesheet" href="<%=request.getContextPath()%>/style.css" type="text/css"/>
                <title><%=PizzaServiceApplication.MAIN_TITLE%> - Vielen Dank!</title>
        </head>
 
@@ -28,9 +35,7 @@
                        <h1><%=PizzaServiceApplication.MAIN_TITLE%> - Vielen Dank!</h1>
                </div>
 
-               <div id="menu">
-                       <jsp:include page="static/menu.jsp" flush="true" />
-               </div>
+               <jsp:include page="/static/menu.jsp" flush="true" />
 
                <div id="content_outer">
                        <div id="content_title">
                                        </thead>
                                        <tbody class="table_body">
                                                <%
-                                               // Get iterator from products
-                                               Iterator<Map.Entry<String, Product>> iterator = service.getProductsIterator();
-
-                                               // Iterate over all
-                                               while (iterator.hasNext()) {
-                                                       // Get entry
-                                                       Map.Entry<String, Product> entry = iterator.next();
-
-                                                       // Get product
-                                                       Product product = entry.getValue();
-
-                                                       // Mark product as ordered
-                                                       service.markProductAsOrdered(product, session);
+                                               // "Walk" over all products
+                                               for (final Product product : app.getProducts()) {
                                                        %>
                                                        <tr>
                                                                <td>
-                                                                       <%=service.getPrintableChoosenFromRequestSession(product, request, session)%>
+                                                                       <%=app.getPrintableChoosenFromRequestSession(product, request, session)%>
                                                                </td>
                                                                <td>
-                                                                       <%=service.handleAmountFromRequestSession(product, request, session)%>
+                                                                       <%=app.handleAmountFromRequestSession(product, request, session)%>
                                                                </td>
                                                                <td>
                                                                        <%=product.getTitle()%>
                                                                        <%=product.getPrice()%>
                                                                </td>
                                                                <td>
-                                                                       <%=service.getTotalPositionPriceFromRequestSession(product, request, session)%>
+                                                                       <%=app.getTotalPositionPriceFromRequestSession(product, request, session)%>
                                                                </td>
                                                        </tr>
                                                        <%
                                                }
-                                               float totalPrice = service.calculateTotalPrice(request, session);
+                                               float totalPrice = app.calculateTotalPrice(request, session);
                                                %>
                                                <tr>
                                                        <td id="table_total_amount_left">
                                                                Menge:
                                                        </td>
                                                        <td id="table_total_amount_right">
-                                                               <%=service.calculateTotalAmount(request, session)%>
+                                                               <%=app.calculateTotalAmount(request, session)%>
                                                        </td>
                                                        <td class="spacer">
                                                                &nbsp;
                                                        </td>
                                                </tr>
 
+                                               <tr>
+                                                       <td colspan="5" class="table_header">
+                                                               Ihre Daten:
+                                                       </td>
+                                               </tr>
+
+                                               <tr>
+                                                       <td colspan="5" class="table_row">
+                                                               <%
+                                                               // Debug message
+                                                               app.getLogger().debug("customer=" + customer);
+
+                                                               // Get iterator on all fields/attributes
+                                                               Iterator<Map.Entry<Field, Object>> fieldIterator = customer.iterator();
+                                                               %>
+                                                               <ul>
+                                                               <%
+                                                               while (fieldIterator.hasNext()) {
+                                                                       Map.Entry<Field, Object> entry = fieldIterator.next();
+                                                                       %>
+                                                                       <li><%=entry.getKey().getName()%> set to: <%=entry.getValue()%></li>
+                                                                       <%
+                                                               }
+                                                               %>
+                                                               </ul>
+                                                       </td>
+                                               </tr>
+
                                                <tr>
                                                        <td colspan="5" class="table_footer">
                                                                <%
-                                                               if (("POST".equals(request.getMethod())) && (service.calculateTotalAmount(request, session) > 0)) {
+                                                               if (("POST".equals(request.getMethod())) && (app.calculateTotalAmount(request, session) > 0)) {
                                                                        out.print("Ihre Bestellung ist eingegangen.");
                                                                        synchronized(session) {
-                                                                               session.invalidate();
+                                                                               //session.invalidate();
+                                                                               out.print("<div>Zu Demo-Zwecken wird die Sitzung nicht gekillt. Bitte 'Bestellung' aufrufen, um zu gucken, dass die Daten da sind.</div>");
                                                                        }
                                                                } else {
                                                                        // Nothing ordered