Package com.openbravo.pos.pda.struts.forms

Examples of com.openbravo.pos.pda.struts.forms.AddedProductForm


     */
    public ActionForward execute(ActionMapping mapping, ActionForm form,
            HttpServletRequest request, HttpServletResponse response)
            throws Exception {

        AddedProductForm aForm = (AddedProductForm) form;
        RestaurantManager bo = new RestaurantManager();
        String place = aForm.getPlace();
        String productId = aForm.getProductId();

        bo.addLineToTicket(place, productId);
        List auxiliars = new ArrayList<ProductInfo>();
        auxiliars = bo.findAuxiliars(productId);
        request.setAttribute("place", place);
View Full Code Here

TOP

Related Classes of com.openbravo.pos.pda.struts.forms.AddedProductForm

Copyright © 2018 www.massapicom. 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.