Exemple #1
0
 public boolean cancelarPedido(MaterialCompra materialCompra) {
   if ((materialCompra.getCompra() != null)
       || (materialCompra.getPrecoMatcom() != null)
       || (materialCompra.getQuantMatcom() != null)) {
     return false;
   } else {
     if (dao.excluir(materialCompra) != Dao.SUCESSO) {
       return false;
     }
     return true;
   }
 }