Package it.pdor.webapp

Examples of it.pdor.webapp.ConfigBean


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

  @SuppressWarnings("unchecked")
  @Override
  public void preparaDatiPerStampaEAggiornaDB(List<TestataFattura> listaDaStampare, CommonMessageBundle messageBundle, FacesContext context) throws FatturaException, MalformedURLException{
    try {
      List<TestataFattura> fattureDaStampare = controllaFatture(listaDaStampare);
      ConfigBean configBean = new ConfigBean();
      String reportPath = configBean.getReportPath();
      String reportImagePath = configBean.getReportImagePath();
      ExternalContext eContext = context.getExternalContext();
      HttpSession session = (HttpSession)eContext.getSession(false);    
      HttpServletRequest req = (HttpServletRequest)eContext.getRequest();
      //URL del report principale
      URL reportUrl = new URL("http://"+req.getServerName()+":"+req.getServerPort()+reportPath+"contabilita/operazioniGiornaliere/StampaFatture.jasper");
View Full Code Here

  @SuppressWarnings("unchecked")
  @Override
  public void preparaDatiPerRistampa(List<TestataFattura> listaDaStampare, CommonMessageBundle messageBundle, FacesContext context) throws FatturaException, MalformedURLException{
    try {
      ConfigBean configBean = new ConfigBean();
      String reportPath = configBean.getReportPath();
      String reportImagePath = configBean.getReportImagePath();
     
      ExternalContext eContext = context.getExternalContext();
      HttpSession session = (HttpSession)eContext.getSession(false);    
      HttpServletRequest req = (HttpServletRequest)eContext.getRequest();
      //URL del report principale
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

    else if ("R".equals(getInterfacciaAntiMafia().getFlagRapportoSoggetto())) {
      RisultatoRicercaMutuoBackingBean risultatoRicercaMutuo = (RisultatoRicercaMutuoBackingBean) BackingBeanUtility.trova("risultatoRicercaMutuo");
      risultatoRicercaMutuo.cercaMutuoGenerale(ae);
    }
    else {
      CommonMessageBundle messageBundle = new CommonMessageBundle((new ConfigBean()).getOperazioniGiornaliereMessages());
      alertMsgPopup.setMessage(messageBundle.getMessage("AlertMsgFlagRapportoSoggettoNonValorizzato"));
      alertMsgPopup.openPopup();
    }
  }
View Full Code Here

TOP

Related Classes of it.pdor.webapp.ConfigBean

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.