/**
  * AUTOR Y FECHA CREACION: JCHAVEZ / 26-08-2013 OBTENER MONTOS TOTALES POR EMPRESA-DESCUENTA Y
  * PERIODO (ESTADO DE CUENTA - TAB TERCEROS)
  */
 public List<Descuento> getMontoTotalPorNomCptoYPeriodo(
     String strDsteCpto,
     String strNomCpto,
     Integer intPeriodo,
     Integer intMes,
     Integer intParaModalidadCod,
     String strLibEle)
     throws BusinessException {
   List<Descuento> lista = null;
   try {
     HashMap<String, Object> mapa = new HashMap<String, Object>();
     mapa.put("strDsteCpto", strDsteCpto);
     mapa.put("strNomCpto", strNomCpto);
     mapa.put("intPeriodo", intPeriodo);
     mapa.put("intMes", intMes);
     mapa.put("intParaModalidadCod", intParaModalidadCod);
     mapa.put("strLibEle", strLibEle);
     lista = dao.getMontoTotalPorNomCptoYPeriodo(mapa);
   } catch (DAOException e) {
     throw new BusinessException(e);
   } catch (Exception e) {
     throw new BusinessException(e);
   }
   return lista;
 }