Examples of YFBill


Examples of com.supinfo.youfood.entity.YFBill

    @Override
    protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {

        req.setAttribute("currentPage", "bills");
        req.setAttribute("page", "/bill/show.jsp");
        YFBill bill = billService.getBill(Long.parseLong(req.getParameter("id")));
        req.setAttribute("bill", bill);
        req.setAttribute("orders", orderService.getBillOrders(bill));
        req.getRequestDispatcher("/index.jsp").forward(req, resp);
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.