Examples of VendaEstoqueInsuficienteException


Examples of com.loja.model.exception.VendaEstoqueInsuficienteException

    return itensVenda;
  }
 
  public void adicionaProduto(ItemVenda itemVenda) throws VendaEstoqueInsuficienteException, 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();
    }
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.