Package it.pdor.webapp.common.exception

Examples of it.pdor.webapp.common.exception.NoDataFoundException


      throw new NoSearchParameterException();
   
    List<RowCertificazioneInteressi> rowMovimenti = new ArrayList<RowCertificazioneInteressi>();
    List<GestioneCertificazione> certificazioni = contabilitaFacade.getGestioneCertificazione(listaCriteriConvertiti);
    if (certificazioni.size() == 0)
      throw new NoDataFoundException();
   
    SimpleDateFormat sdf = new SimpleDateFormat("dd/MM/yyyy");
    List<GestioneCertificazione> certificazioniNew = new ArrayList<GestioneCertificazione>(); // lista da settare con i totali calcolati
    for (GestioneCertificazione cert : certificazioni)
    {
View Full Code Here


//    }
    PagedSearchResult pagedResult = contabilitaFacade.pagedCercaContoByCriteria(listaCriteriConvertiti, getStartingIndex(), getPageSize());
    setRisultatiSuccessiviPresenti(pagedResult.hasMore());
    List<Object> oggetti = pagedResult.getResult();
    if (oggetti.size() == 0) {
      throw new NoDataFoundException();
    }
    for (Object oggetto : oggetti)
      rowConti.add(new RowConto((Conto) oggetto, Boolean.FALSE));
    return rowConti;
  }
View Full Code Here

  protected List ricerca() throws NoDataFoundException {
    List<RowCausaleOperazione> rowCausali = new ArrayList<RowCausaleOperazione>();
    List<SearchCriteriaLogicProduct> listaCriteriConvertiti = gestoreParametriRicerca.getListaCriteriConvertiti();
    List<CausaleOperazione> causali = contabilitaFacade.cercaCausaleOperazioneByCriteria(listaCriteriConvertiti);
    if (causali.size() == 0)
      throw new NoDataFoundException();
    for (CausaleOperazione causale : causali) {
      rowCausali.add(new RowCausaleOperazione(causale, Boolean.FALSE));
    }
    return rowCausali;
  }
View Full Code Here

    if (isFiltroGruppoCompilato())
      aggiungiCondizioneObbligatoria(listaCriteriConvertiti);
    List<Mastro> mastri = contabilitaFacade.cercaMastroByCriteria(listaCriteriConvertiti);
    List<RowMastro> rowMastri = new ArrayList<RowMastro>();
    if (mastri.size() == 0)
      throw new NoDataFoundException();
    for (Mastro mastro : mastri) {
      rowMastri.add(new RowMastro(mastro, Boolean.FALSE));
    }
    return rowMastri;
  }
View Full Code Here

    PagedSearchResult pagedResult = contabilitaFacade.pagedCercaInterfacciaAntiMafiaByCriteria(listaCriteriConvertiti, getStartingIndex(), getPageSize());
    setRisultatiSuccessiviPresenti(pagedResult.hasMore());
   
    List<Object> oggetti = pagedResult.getResult();
    if (oggetti.size() == 0) {
      throw new NoDataFoundException();
    }
   
    List<RowInterfacciaAntiMafia> result = new ArrayList<RowInterfacciaAntiMafia>();
    for (Object oggetto : oggetti) {
      InterfacciaAntiMafia interfaccia = (InterfacciaAntiMafia) oggetto;
View Full Code Here

  @SuppressWarnings("unchecked")
  protected List ricerca() throws NoDataFoundException {
    List<SearchCriteriaLogicProduct> listaCriteriConvertiti = gestoreParametriRicerca.getListaCriteriConvertiti();
    List<Gruppo> gruppi = contabilitaFacade.cercaGruppoByCriteria(listaCriteriConvertiti);
    if (gruppi.size() == 0)
      throw new NoDataFoundException();
    return gruppi;
  }
View Full Code Here

    PagedSearchResult pagedResult = contabilitaFacade.pagedCercaContoMastroByCriteria(listaCriteriConvertiti, getStartingIndex(), getPageSize());
    setRisultatiSuccessiviPresenti(pagedResult.hasMore());
    List<Object> oggetti = pagedResult.getResult();

    if (oggetti.size() == 0) {
      throw new NoDataFoundException();
    }
   
    List<Conto> result = new ArrayList<Conto>();
    for (Object oggetto : oggetti) {
      Conto conto = (Conto) oggetto;
View Full Code Here

      PagedSearchResult pagedResult = contabilitaFacade.pagedCercaPartitaByCriteria(listaCriteriConvertiti,
          getStartingIndex(), getPageSize());
      setRisultatiSuccessiviPresenti(pagedResult.hasMore());
      List<Object> oggetti = pagedResult.getResult();
      if (oggetti.size() == 0) {
        throw new NoDataFoundException();
      }
      for (Object oggetto : oggetti) {
        Partita partita = (Partita) oggetto;
        listaRowPartita.add(new RowPartita(partita));
      }
View Full Code Here

    PagedSearchResult pagedResult = contabilitaFacade.pagedFindFattureByCriteria(listaCriteriConvertiti, getStartingIndex(), getPageSize());
    setRisultatiSuccessiviPresenti(pagedResult.hasMore());
    List<Object> oggetti = pagedResult.getResult();

    if (oggetti.size() == 0) {
      throw new NoDataFoundException();
    }
   
    for (Object oggetto : oggetti) {
      TestataFattura tf = (TestataFattura)oggetto;
View Full Code Here

    PagedSearchResult pagedResult = contabilitaFacade.pagedFindMovimentiContabiliByCriteria(listaCriteriConvertiti, getStartingIndex(), getPageSize());
    setRisultatiSuccessiviPresenti(pagedResult.hasMore());
    List<Object> oggetti = pagedResult.getResult();

    if (oggetti.size() == 0) {
      throw new NoDataFoundException();
    }
   
    totaleImportoDare = 0;
    totaleImportoAvere = 0;
    List<RowMovimentoContabile> result = new ArrayList<RowMovimentoContabile>();
View Full Code Here

TOP

Related Classes of it.pdor.webapp.common.exception.NoDataFoundException

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.