Package com.openbravo.pos.pda.dao

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


        return category.findAllSubcategories(id);
    }

    public List<ProductInfo> findAuxiliars(String id) {
        product = new ProductDAO();

        return product.findAllAuxiliars(id);
    }
View Full Code Here


        return lines.findLinesByTicket(ticketId);
    }

    public ProductInfo findProductById(String productId) {
        product = new ProductDAO();
        if (productId.contains("+")) {
            String[] str = productId.split("+");
            productId = str[str.length - 1];
        }
        return product.findProductById(productId);
View Full Code Here

        return login.findUser(aLogin, password);
    }

    public List<ProductInfo> findProductsByCategory(String categoryId) {
        product = new ProductDAO();

        return product.findProductsByCategory(categoryId);
    }
View Full Code Here

        return place.findPlaceById(placeId);
    }

    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);
View Full Code Here

TOP

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

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.