Examples of UISearchCriteriaWithEntity


Examples of it.pdor.webapp.common.UISearchCriteriaWithEntity

      FatturaSearchCriteriaLogicProduct newSclp = new FatturaSearchCriteriaLogicProduct();
      FatturaSearchCriteriaLogicProduct fsclp = ((GestoreParametriRicercaFattura) gestoreParametriRicerca).getPrimaRigaRicerca();

      List<SearchCriteria> scList = fsclp.getSearchCriteriaList();
      for (SearchCriteria searchCriteria : scList) {
        UISearchCriteriaWithEntity uisc = (UISearchCriteriaWithEntity) searchCriteria;
        UISearchCriteriaWithEntity newUisc = new UISearchCriteriaWithEntity();
        try {
          try {
            newUisc.setValore(PropertyUtils.getProperty(tf, uisc.getCampo()));
            newUisc.setVisible(uisc.getVisible());
          } catch (Exception e) {
            newUisc.setValore("");
            newUisc.setVisible(uisc.getVisible());
          }
          PropertyUtils.setProperty(newSclp, uisc.getCampo(), newUisc);
        } catch (Exception e) {
          log.error(e.getMessage());
        }
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.