]> git.mxchange.org Git - pizzaservice-war.git/blob - web/form_handler/do_order.jsp
Added NetBeans project files + debug message
[pizzaservice-war.git] / web / form_handler / do_order.jsp
1 <%-- 
2         Document   : order
3         Created on : 07.08.2015, 14:58:21
4         Author     : Roland Haeder
5 --%>
6
7 <%--<%@page errorPage="errorHandler.jsp" %>--%>
8 <%@page contentType="text/html" pageEncoding="UTF-8"%>
9 <%@page import="org.mxchange.pizzaapplication.application.PizzaServiceApplication"%>
10 <%@page import="org.mxchange.pizzaapplication.application.PizzaApplication"%>
11 <%@page import="org.mxchange.pizzaapplication.beans.CustomerBean" %>
12 <%@page import="org.mxchange.pizzaapplication.product.Product"%>
13
14 <%
15         // Init application instance
16         PizzaApplication app = PizzaServiceApplication.getInstance(application);
17
18         // Is it post?
19         if ("POST".equals(request.getMethod())) { //NOI18N
20                 // Handle saving customer data and such things
21                 
22                 // "Walk" over all products
23                 for (final Product product : app.getProducts()) {
24                         // Is it choosen?
25                         if (app.isProductChoosen(product, request, session)) {
26                                 // Mark product as ordered
27                                 app.markProductAsOrdered(product, session);
28                         }
29                 }
30
31                 // Redirect to proper URL
32                 // @TODO Commented out for developing:
33                 //response.sendRedirect(request.getContextPath() + "/finished.jsp");
34 %>
35 <jsp:useBean id="customer" scope="session" class="org.mxchange.pizzaapplication.customer.bean.PizzaServiceCustomerBean" type="CustomerBean" />
36 <jsp:setProperty name="customer" property="*" />
37 <jsp:forward page="../finished.jsp" />
38 <%
39         }
40 %>
41
42 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
43 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de" lang="de">
44         <head>
45                 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
46                 <link rel="stylesheet" href="<%=request.getContextPath()%>/style.css" type="text/css"/>
47                 <title><%=PizzaServiceApplication.MAIN_TITLE%> - Form-Handler</title>
48         </head>
49
50         <body>
51                 <div id="title">
52                         <h1><%=PizzaServiceApplication.MAIN_TITLE%> - Form-Handler</h1>
53                 </div>
54
55                 <jsp:include page="/static/menu.jsp" flush="true" />
56
57                 <div id="content_outer">
58                         <div id="content_title">
59                                 <h2>Bitte nicht direkt aufrufen:</h2>
60                         </div>
61
62                         <div id="content">
63                                 Bitte rufen Sie diese Seite nicht direkt auf.
64                         </div>
65                 </div>
66         </body>
67 </html>