public void eliminarListaGestionCobranzaEnt(GestionCobranzaEnt gestionCobranzaEnt)
      throws BusinessException {

    GestionCobranzaEnt gestionCobranzaEntTemp = null;
    try {
      log.info("GestionCobranzaEnt.intEstadoCod: " + gestionCobranzaEnt.getIntEstadoCod());
      log.info("GestionCobranzaEnt.intNivel: " + gestionCobranzaEnt.getIntNivel());
      log.info("GestionCobranzaEnt.id: " + gestionCobranzaEnt.getId());

      gestionCobranzaEntTemp = boGestionCobranzaEnt.getGestionCobranzaEntPorPK(gestionCobranzaEnt);
      if (gestionCobranzaEntTemp != null && gestionCobranzaEnt.getIsDeleted() == true) {
        gestionCobranzaEntTemp.setIntEstadoCod(Constante.PARAM_T_ESTADOUNIVERSAL_ANULADO);
        gestionCobranzaEnt =
            boGestionCobranzaEnt.modificarGestionCobranzaEnt(gestionCobranzaEntTemp);
      }
      log.info(
          "gestionCobranzaEnt.id.intItemGestCobrEntidadPk: "
              + gestionCobranzaEnt.getId().getIntItemGestCobrEntidad());
    } catch (BusinessException e) {
      throw e;
    } catch (Exception e) {
      throw new BusinessException(e);
    }
  }