Package it.pdor.webapp.common

Examples of it.pdor.webapp.common.CommonMessageBundle


      articoloDaRicerca = false;
      primaNotaController.salvaArticolo(getListaRighe());
      return "goToModificaArticoloAfterSave";
    } catch (ContabilitaException e) {
      log.debug(e.getMessage(), e);
      CommonMessageBundle mb = new CommonMessageBundle();
      alertMsgPopup.setMessage(mb.getMessage("AlertProblemaSalvataggio"));
      alertMsgPopup.openPopup();
      return "";
    }
  }
View Full Code Here


      articoloDaRicerca = false;
      primaNotaController.salvaArticolo(getListaRighe());
      return "goToModificaArticoloAfterSave";
    } catch (ContabilitaException e) {
      log.debug(e.getMessage(), e);
      CommonMessageBundle mb = new CommonMessageBundle();
      alertMsgPopup.setMessage(mb.getMessage("AlertProblemaSalvataggio"));
      alertMsgPopup.openPopup();
      return "";
    }
  }
View Full Code Here

class InterfacciaAntiMafiaNonValidaException extends Exception {
  private String alertMsgKey;
  private CommonMessageBundle messageBundle;

  public InterfacciaAntiMafiaNonValidaException(String alertMsgKey) {
    messageBundle = new CommonMessageBundle((new ConfigBean()).getOperazioniGiornaliereMessages());
    this.alertMsgKey = alertMsgKey;
  }
View Full Code Here

class FatturaNonValidaException extends Exception {
  private String alertMsgKey;
  private CommonMessageBundle messageBundle;

  public FatturaNonValidaException(String alertMsgKey) {
    messageBundle = new CommonMessageBundle((new ConfigBean()).getOperazioniGiornaliereMessages());
    this.alertMsgKey = alertMsgKey;
  }
View Full Code Here

  List<RowContoPerChiusuraEsercizio> contiNonTrattabili = new ArrayList<RowContoPerChiusuraEsercizio>();
  private int chiusuraEsercizioTabSetIndex = 0;
  private ProgressBarController progressBarController;

  public ChiusuraEsercizioBackingBean() {
    messageBundle = new CommonMessageBundle((new ConfigBean()).getOperazioniPeriodicheMessages());
    commonMessageBundle = new CommonMessageBundle();
  }
View Full Code Here

 
  public RicercaArticoloAction() {
    super("goToRisultatoRicercaArticolo");
    setPageSize(PAGESIZE_RICERCA);
    messageBundle = new CommonMessageBundle((new ConfigBean()).getOperazioniGiornaliereMessages());
  }
View Full Code Here

      try {
        GruppoDatiPartita gdp = contabilitaFacade.leggiGruppoDatiPartita(newCodicePartita);
        if (gdp != null)
          cambiaCodicePartita(gdp);
        else {
          CommonMessageBundle messageBundle = new CommonMessageBundle((new ConfigBean())
              .getOperazioniGiornaliereMessages());
          alertMsgPopup.setMessage(messageBundle.getMessage("AlertMsgCodicePartitaNonValido"));
          alertMsgPopup.openPopup();
        }
      } catch (ContabilitaException e) {
        log.error("errore nella ricerca del codice partita:[" + newCodicePartita + "]", e);
        CommonMessageBundle messageBundle = new CommonMessageBundle((new ConfigBean())
            .getOperazioniGiornaliereMessages());
        alertMsgPopup.setMessage(messageBundle.getMessage("AlertMsgCodicePartitaNonValido"));
        alertMsgPopup.openPopup();
      }
      BackingBeanUtility.refreshCurrentPage();
    }
  }
View Full Code Here

  public VerificatorePartita(Partita partita, FacesContext context, ContabilitaFacade contabilitaFacade) {
    this.partita = partita;
    this.context = context;
    this.contabilitaFacade = contabilitaFacade;
    messaggi = new ArrayList<String>();
    messageBundle = new CommonMessageBundle((new ConfigBean()).getOperazioniGiornaliereMessages());
  }
View Full Code Here

  private DettaglioMovimentoContabileBackingBean dettaglioMovimentoContabileBackingBean;
  private CommonMessageBundle messageBundle;


  public ListaRigheAntiMafiaBackingBean() {
    messageBundle = new CommonMessageBundle((new ConfigBean()).getOperazioniGiornaliereMessages());
  }
View Full Code Here

      int newIndex = getListaRighe().getRighe().size() - 1;
      getListaRighe().setSelectedIndex(newIndex);
      reloadDettaglio(null);
    } catch (ContabilitaException e) {
      log.debug(e.getMessage(),e);
      CommonMessageBundle messageBundle = new CommonMessageBundle((new ConfigBean()).getOperazioniGiornaliereMessages());
      ((DettaglioAntiMafiaBackingBean) getBeanDestinazione()).getAlertMsgPopup().setMessage(messageBundle.getMessage("AlertMsgCausaleAntiMafiaNonValida"));
      ((DettaglioAntiMafiaBackingBean) getBeanDestinazione()).getAlertMsgPopup().openPopup()
    }
  }
View Full Code Here

TOP

Related Classes of it.pdor.webapp.common.CommonMessageBundle

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.