Package com.openbravo.pos.pda.dao

Examples of com.openbravo.pos.pda.dao.CategoryDAO


        return floor.findAllFloors();
    }

    public List<CategoryInfo> findAllSubcategories(String id) {
        category = new CategoryDAO();

        return category.findAllSubcategories(id);
    }
View Full Code Here


        return list;
    }

    public List<CategoryInfo> findAllCategories() {
        category = new CategoryDAO();

        return category.findAllCategories();
    }
View Full Code Here

    }

    public void addLineToTicket(String ticketId, String productId) {
        ticket = new TicketDAO();
        product = new ProductDAO();
        category = new CategoryDAO();
        tax = new TaxDAO();
        taxesLogic = new TaxesLogic(tax.getTaxList());

        TicketInfo obj = ticket.getTicket(ticketId);
        ProductInfo productObj = product.findProductById(productId);
View Full Code Here

TOP

Related Classes of com.openbravo.pos.pda.dao.CategoryDAO

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.