use of org.mifos.framework.hibernate.helper.QueryResult in project head by mifos.
the class CustomerServiceFacadeWebTier method search.
@Override
public CustomerSearch search(String searchString) throws ApplicationException {
MifosUser user = (MifosUser) SecurityContextHolder.getContext().getAuthentication().getPrincipal();
UserContext userContext = toUserContext(user);
if (searchString == null) {
throw new CustomerException(CenterConstants.NO_SEARCH_STRING);
}
String normalisedSearchString = org.mifos.framework.util.helpers.SearchUtils.normalizeSearchString(searchString);
if (normalisedSearchString.equals("")) {
throw new CustomerException(CenterConstants.NO_SEARCH_STRING);
}
String officeId = userContext.getBranchId().toString();
String officeName = this.officeDao.findOfficeDtoById(userContext.getBranchId()).getName();
PersonnelBO loggedInUser = personnelDao.findPersonnelById(userContext.getId());
QueryResult searchResult = customerDao.search(normalisedSearchString, loggedInUser);
return new CustomerSearch(searchResult, searchString, officeId, officeName);
}
use of org.mifos.framework.hibernate.helper.QueryResult in project head by mifos.
the class CustomerPersistence method mainSearch.
private QueryResult mainSearch(final String searchString, final Short officeId, final Short userId, final Short userOfficeId, final SearchFiltersDto filters) throws PersistenceException, HibernateSearchException {
String[] namedQuery = new String[2];
List<Param> paramList = new ArrayList<Param>();
QueryInputs queryInputs = setQueryInputsValues(namedQuery, paramList);
QueryResult queryResult = QueryFactory.getQueryResult(CustomerSearchConstants.CUSTOMERSEARCHRESULTS);
if (officeId.shortValue() != 0) {
namedQuery[0] = NamedQueryConstants.CUSTOMER_SEARCH_COUNT;
namedQuery[1] = NamedQueryConstants.CUSTOMER_SEARCH;
paramList.add(typeNameValue("Short", "OFFICEID", officeId));
} else {
namedQuery[0] = NamedQueryConstants.CUSTOMER_SEARCH_COUNT_NOOFFICEID;
namedQuery[1] = NamedQueryConstants.CUSTOMER_SEARCH_NOOFFICEID;
paramList.add(typeNameValue("String", "OFFICE_SEARCH_ID", new OfficePersistence().getOffice(userOfficeId).getSearchId() + "%"));
}
paramList.add(typeNameValue("String", "SEARCH_STRING", "%" + searchString + "%"));
if (searchString.contains(" ")) {
List<String> words = new ArrayList<String>(Arrays.asList(searchString.split(" +")));
// strings to get exactly 3 words
if (words.size() > 3) {
for (int i = 3; i < words.size(); ++i) {
words.set(2, words.get(2) + " " + words.get(i));
}
words = words.subList(0, 3);
} else if (words.size() < 3) {
int elementsToAdd = 3 - words.size();
for (int i = 0; i < elementsToAdd; ++i) {
words.add("");
}
}
paramList.add(typeNameValue("String", "SEARCH_STRING1", "%" + words.get(0) + "%"));
paramList.add(typeNameValue("String", "SEARCH_STRING2", "%" + words.get(1) + "%"));
paramList.add(typeNameValue("String", "SEARCH_STRING3", "%" + words.get(2) + "%"));
} else {
paramList.add(typeNameValue("String", "SEARCH_STRING1", searchString));
paramList.add(typeNameValue("String", "SEARCH_STRING2", ""));
paramList.add(typeNameValue("String", "SEARCH_STRING3", ""));
}
setParams(paramList, userId);
setSearchFilters(paramList, filters);
queryResult.setQueryInputs(queryInputs);
return queryResult;
}
use of org.mifos.framework.hibernate.helper.QueryResult in project head by mifos.
the class LegacyPersonnelDao method getAllPersonnelNotes.
public QueryResult getAllPersonnelNotes(Short personnelId) throws PersistenceException {
QueryResult notesResult = null;
try {
Session session = null;
notesResult = QueryFactory.getQueryResult("NotesSearch");
session = StaticHibernateUtil.getSessionTL();
Query query = session.getNamedQuery(NamedQueryConstants.GETALLPERSONNELNOTES);
query.setInteger("PERSONNEL_ID", personnelId);
notesResult.executeQuery(query);
} catch (HibernateProcessException hpe) {
throw new PersistenceException(hpe);
} catch (HibernateSearchException hse) {
throw new PersistenceException(hse);
}
return notesResult;
}
use of org.mifos.framework.hibernate.helper.QueryResult in project head by mifos.
the class CustomerDaoHibernate method search.
@Override
public QueryResult search(String searchString, PersonnelBO user) {
String[] namedQuery = new String[2];
List<Param> paramList = new ArrayList<Param>();
QueryInputs queryInputs = new QueryInputs();
QueryResult queryResult = QueryFactory.getQueryResult(PersonnelConstants.USER_LIST);
String officeSearchId = user.getOffice().getSearchId();
namedQuery[0] = NamedQueryConstants.CENTER_SEARCH_COUNT;
namedQuery[1] = NamedQueryConstants.CENTER_SEARCH;
paramList.add(typeNameValue("String", "SEARCH_ID", officeSearchId + "%"));
paramList.add(typeNameValue("String", "CENTER_NAME", "%" + searchString + "%"));
paramList.add(typeNameValue("Short", "LEVEL_ID", CustomerLevel.CENTER.getValue()));
paramList.add(typeNameValue("Short", "STATUS_ID", CustomerStatus.CENTER_ACTIVE.getValue()));
paramList.add(typeNameValue("Short", "USER_ID", user.getPersonnelId()));
paramList.add(typeNameValue("Short", "USER_LEVEL_ID", user.getLevelEnum().getValue()));
paramList.add(typeNameValue("Short", "LO_LEVEL_ID", PersonnelConstants.LOAN_OFFICER));
String[] aliasNames = { "parentOfficeId", "parentOfficeName", "centerSystemId", "centerName" };
queryInputs.setQueryStrings(namedQuery);
queryInputs.setPath("org.mifos.customers.center.util.helpers.CenterSearchResultsDto");
queryInputs.setAliasNames(aliasNames);
queryInputs.setParamList(paramList);
try {
queryResult.setQueryInputs(queryInputs);
} catch (HibernateSearchException e) {
throw new MifosRuntimeException(e);
}
return queryResult;
}
use of org.mifos.framework.hibernate.helper.QueryResult in project head by mifos.
the class CustomerPersistence method idSearch.
private QueryResult idSearch(final String searchString, final Short officeId, final Short userId) throws HibernateSearchException, SystemException, PersistenceException {
if (!isCustomerExist(searchString)) {
return null;
}
String[] namedQuery = new String[2];
List<Param> paramList = new ArrayList<Param>();
QueryInputs queryInputs = new QueryInputs();
String[] Names = { "customerId", "centerName", "centerGlobalCustNum", "customerType", "branchGlobalNum", "branchName", "loanOfficerName", "loanOffcerGlobalNum", "customerStatus", "groupName", "groupGlobalCustNum", "clientName", "clientGlobalCustNum", "loanGlobalAccountNumber" };
QueryResult queryResult = QueryFactory.getQueryResult(CustomerSearchConstants.CUSTOMERSEARCHRESULTS);
queryInputs.setPath("org.mifos.customers.business.CustomerSearchDto");
queryInputs.setAliasNames(Names);
queryResult.setQueryInputs(queryInputs);
queryInputs.setQueryStrings(namedQuery);
queryInputs.setParamList(paramList);
PersonnelBO personnel = getLegacyPersonnelDao().getPersonnel(userId);
if (officeId != null && officeId.shortValue() == 0) {
namedQuery[0] = NamedQueryConstants.CUSTOMER_ID_SEARCH_NOOFFICEID_COUNT;
namedQuery[1] = NamedQueryConstants.CUSTOMER_ID_SEARCH_NOOFFICEID;
if (personnel.getLevelEnum() == PersonnelLevel.LOAN_OFFICER) {
paramList.add(typeNameValue("String", "SEARCH_ID", personnel.getOffice().getSearchId()));
} else {
paramList.add(typeNameValue("String", "SEARCH_ID", personnel.getOffice().getSearchId() + "%"));
}
} else {
paramList.add(typeNameValue("Short", "OFFICEID", officeId));
if (personnel.getLevelEnum() == PersonnelLevel.LOAN_OFFICER) {
paramList.add(typeNameValue("String", "ID", personnel.getPersonnelId()));
namedQuery[0] = NamedQueryConstants.CUSTOMER_ID_SEARCH_COUNT;
namedQuery[1] = NamedQueryConstants.CUSTOMER_ID_SEARCH;
} else {
paramList.add(typeNameValue("String", "SEARCH_ID", personnel.getOffice().getSearchId() + "%"));
namedQuery[0] = NamedQueryConstants.CUSTOMER_ID_SEARCH_COUNT_NONLO;
namedQuery[1] = NamedQueryConstants.CUSTOMER_ID_SEARCH_NONLO;
}
}
paramList.add(typeNameValue("String", "SEARCH_STRING", searchString));
return queryResult;
}
Aggregations