Examples of subtractQuantidade()


Examples of labsis.logistica.dao.DaoProduto.subtractQuantidade()

            daoPv.updateStatus(pv);

            produtos = daoPv.listaProdutosVenda(Integer.valueOf(pedidoId));
            for(Entry e : produtos.entrySet()) {
              Produto p = (Produto)e.getKey();
              daoP.subtractQuantidade(p.getId(), (Integer)e.getValue());
            }

            message = "Pedido " + Integer.valueOf(pedidoId) + " aprovado";
            request.setAttribute("message", message);
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.