Package com.loja.model.exception

Examples of com.loja.model.exception.VendaEstoqueMinimoAtingidoException


    if (itemVenda.getQtde().compareTo(itemVenda.getProduto().getEstoque()) > 0) {
      throw new VendaEstoqueInsuficienteException();
    }
   
    if (itemVenda.getProduto().getEstoque().subtract(itemVenda.getQtde()).compareTo(itemVenda.getProduto().getEstoqueMinimo()) < 0) {
      throw new VendaEstoqueMinimoAtingidoException();
    }
   
    BigDecimal estoque = itemVenda.getProduto().getEstoque();
    Produto produto = itemVenda.getProduto();
    produto.setEstoque(estoque.subtract(itemVenda.getQtde()));
View Full Code Here

TOP

Related Classes of com.loja.model.exception.VendaEstoqueMinimoAtingidoException

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.