Examples of Pratica


Examples of it.pdor.contenzioso.domain.hbm.Pratica

 

  @Override
  public long recuperaPratica(long numeroPratica) {
    try {
      Pratica pratica = contenziosoFacade.leggiPraticaById(numeroPratica);
      if (pratica != null)
        return pratica.getNumeroPratica();
      else
        return 0l;
    } catch (DataAccessException e) {
      log.debug(e.getMessage(),e);
      return 0l;
View Full Code Here

Examples of it.pdor.contenzioso.domain.hbm.Pratica

    Long codiceMastro = pianoDeiConti.getCodiceMastro();
    Long codiceConto = pianoDeiConti.getCodiceConto();
    if (codiceGruppo==null || codiceMastro==null || codiceConto==null)
      return 0l;
    try {
      Pratica pratica = contenziosoFacade.cercaPraticaByGruppoMastroConto(codiceGruppo, codiceMastro, codiceConto);
      if (pratica == null)
        return 0l;
      return pratica.getNumeroPratica();
    }
    catch (DataAccessException e) {
      log.debug(e.getMessage(), e);
      return 0l;
    }
View Full Code Here

Examples of it.pdor.contenzioso.domain.hbm.Pratica

      }else{
        throw new FatturaException(messageBundle.getMessage("AlertMsgDatifinNonValorizzati"));
      }
      List<Legame> legami = gestionePratica.getLegamiPerMutuoRapporto(numeroIntestatario, CodiceRapporto.CODICE_RAPPORTO_TRAENTE.getValue());
      if(legami.size() == 0){
        Pratica pratica = contenziosoFacade.cercaPraticaByConto(numeroIntestatario);
        if(pratica != null){
          codiceGruppo = NumberUtils.checkNull(pratica.getGruppoCoge()).intValue();
          codiceMastro = NumberUtils.checkNull(pratica.getMastroCoge()).intValue();
        }
      }else{
        codiceMastro = causaleFattura.getCodiceMastro();
        codiceGruppo = causaleFattura.getCodiceGruppo();
        numeroIntestatario =  legami.iterator().next().getNumeroSoggetto();
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.