]> git.mxchange.org Git - pizzaservice-war.git/blob - web/form_handler/do_order.jsp
Added footer for admin area + error include file "direct_call.jsp"
[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                 // @TODO Handle saving customer data and such things
21
22                 // Mark all choosen products as ordered
23                 app.markAllChoosenProductsAsOrdered(request, session);
24
25                 // Redirect to proper URL
26                 // @TODO Commented out for developing:
27                 //response.sendRedirect(request.getContextPath() + "/finished.jsp");
28 %>
29 <jsp:useBean id="customer" scope="session" class="org.mxchange.pizzaapplication.customer.bean.PizzaServiceCustomerBean" type="CustomerBean" />
30 <jsp:setProperty name="customer" property="*" />
31 <jsp:forward page="../finished.jsp" />
32 <%
33         }
34 %>
35
36 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
37 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de" lang="de">
38         <head>
39                 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
40                 <link rel="stylesheet" href="<%=request.getContextPath()%>/style.css" type="text/css"/>
41                 <title><%=PizzaServiceApplication.MAIN_TITLE%> - Form-Handler</title>
42         </head>
43
44         <body>
45                 <div id="title">
46                         <h1><%=PizzaServiceApplication.MAIN_TITLE%> - Form-Handler</h1>
47                 </div>
48
49                 <jsp:include page="/static/menu.jsp" flush="true" />
50
51                 <jsp:include page="/static/error/direct_call.jsp" flush="true" />
52         </body>
53 </html>