use of org.mifos.framework.util.DateTimeService in project head by mifos.
the class ApplyHolidayChangesHelper method execute.
@Override
public void execute(long timeInMillis) throws BatchJobException {
long taskStartTime = new DateTimeService().getCurrentDateTime().getMillis();
initializeTaskGlobalParameters();
if (unappliedHolidays != null && !unappliedHolidays.isEmpty()) {
for (Holiday holiday : unappliedHolidays) {
logMessage("Processing Holiday: " + holiday.getName() + " From: " + DateUtils.getLocalDateFromDate(holiday.getFromDate().toDate()) + " To: " + DateUtils.getLocalDateFromDate(holiday.getThruDate().toDate()));
try {
rescheduleDatesStartingFromUnappliedHoliday(holiday);
} catch (Exception e) {
StaticHibernateUtil.rollbackTransaction();
errorList.add("Failed to apply holiday changes: " + e.toString());
e.printStackTrace();
throw new BatchJobException(SchedulerConstants.FAILURE, errorList);
}
}
}
StaticHibernateUtil.closeSession();
String finalMessage = "ApplyHolidayChanges task completed in " + (new DateTimeService().getCurrentDateTime().getMillis() - taskStartTime) + " ms";
logMessage(finalMessage);
}
use of org.mifos.framework.util.DateTimeService in project head by mifos.
the class GenerateMeetingsForCustomerAndSavingsHelper method findActiveCustomerAndSavingsAccountIdsThatRequiredMeetingsToBeGenerated.
private List<Integer> findActiveCustomerAndSavingsAccountIdsThatRequiredMeetingsToBeGenerated() throws BatchJobException {
List<Integer> customerAndSavingsAccountIds = new ArrayList<Integer>();
try {
long time1 = new DateTimeService().getCurrentDateTime().getMillis();
customerAndSavingsAccountIds = legacyAccountDao.getActiveCustomerAndSavingsAccountIdsForGenerateMeetingTask();
long duration = new DateTimeService().getCurrentDateTime().getMillis() - time1;
logMessage("Time to execute the query " + duration + " . Got " + customerAndSavingsAccountIds.size() + " accounts.");
} catch (PersistenceException e) {
throw new BatchJobException(e);
}
return customerAndSavingsAccountIds;
}
use of org.mifos.framework.util.DateTimeService in project head by mifos.
the class LoanArrearsHelper method execute.
@Override
public void execute(long timeInMillis) throws BatchJobException {
long time1 = new DateTimeService().getCurrentDateTime().getMillis();
LegacyAccountDao legacyAccountDao = ApplicationContextProvider.getBean(LegacyAccountDao.class);
List<String> errorList = new ArrayList<String>();
List<Integer> listAccountIds = null;
int accountNumber = 0;
try {
Short latenessDays = new LoanPrdPersistence().retrieveLatenessForPrd();
long time3 = new DateTimeService().getCurrentDateTime().getMillis();
listAccountIds = ApplicationContextProvider.getBean(LegacyLoanDao.class).getLoanAccountsInArrearsInGoodStanding(latenessDays);
long duration2 = new DateTimeService().getCurrentDateTime().getMillis() - time3;
accountNumber = listAccountIds.size();
getLogger().info("LoanArrearsTask: getLoanAccountsInArrearsInGoodStanding ran in " + duration2 + " milliseconds" + " got " + accountNumber + " accounts to update.");
} catch (Exception e) {
throw new BatchJobException(e);
}
LoanBO loanBO = null;
int i = 1;
int batchSize = GeneralConfig.getBatchSizeForBatchJobs();
int recordCommittingSize = GeneralConfig.getRecordCommittingSizeForBatchJobs();
try {
long startTime = new DateTimeService().getCurrentDateTime().getMillis();
for (Integer accountId : listAccountIds) {
loanBO = (LoanBO) legacyAccountDao.getAccount(accountId);
assert (loanBO.getAccountState().getId().shortValue() == AccountState.LOAN_ACTIVE_IN_GOOD_STANDING.getValue().shortValue());
loanBO.handleArrears();
if (i % batchSize == 0) {
StaticHibernateUtil.flushAndClearSession();
}
if (i % recordCommittingSize == 0) {
StaticHibernateUtil.commitTransaction();
}
if (i % 1000 == 0) {
long time = new DateTimeService().getCurrentDateTime().getMillis();
getLogger().info("1000 accounts updated in " + (time - startTime) + " milliseconds. There are " + (accountNumber - i) + " more accounts to be updated.");
startTime = time;
}
i++;
}
StaticHibernateUtil.commitTransaction();
} catch (Exception e) {
getLogger().debug("LoanArrearsTask " + e.getMessage());
StaticHibernateUtil.rollbackTransaction();
if (loanBO != null) {
errorList.add(loanBO.getAccountId().toString());
}
} finally {
StaticHibernateUtil.closeSession();
}
long time2 = new DateTimeService().getCurrentDateTime().getMillis();
long duration = time2 - time1;
getLogger().info("LoanArrearsTask ran in " + duration + " milliseconds");
if (errorList.size() > 0) {
throw new BatchJobException(SchedulerConstants.FAILURE, errorList);
}
}
use of org.mifos.framework.util.DateTimeService in project head by mifos.
the class PortfolioAtRiskHelper method execute.
@Override
public void execute(long timeInMillis) throws BatchJobException {
long time1 = new DateTimeService().getCurrentDateTime().getMillis();
List<BasicGroupInfo> groupInfos = null;
List<String> errorList = new ArrayList<String>();
try {
groupInfos = new CustomerPersistence().getAllBasicGroupInfo();
} catch (Exception e) {
throw new BatchJobException(e);
}
if (groupInfos != null && !groupInfos.isEmpty()) {
int groupCount = groupInfos.size();
getLogger().info("PortfolioAtRisk: got " + groupCount + " groups to process.");
long startTime = new DateTimeService().getCurrentDateTime().getMillis();
int i = 1;
Integer groupId = null;
GroupPersistence groupPersistence = new GroupPersistence();
try {
for (BasicGroupInfo groupInfo : groupInfos) {
groupId = groupInfo.getGroupId();
String searchStr = groupInfo.getSearchId() + ".%";
double portfolioAtRisk = PortfolioAtRiskCalculation.generatePortfolioAtRiskForTask(groupId, groupInfo.getBranchId(), searchStr);
// updated_by and updated_date
if (portfolioAtRisk > -1) {
groupPersistence.updateGroupInfoAndGroupPerformanceHistoryForPortfolioAtRisk(portfolioAtRisk, groupId);
}
if (i % 500 == 0) {
long time = new DateTimeService().getCurrentDateTime().getMillis();
getLogger().info("500 groups updated in " + (time - startTime) + " milliseconds. There are " + (groupCount - i) + " more groups to be updated.");
startTime = time;
}
i++;
}
} catch (Exception e) {
getLogger().error("PortfolioAtRiskHelper execute failed with exception " + e.getClass().getName() + ": " + e.getMessage() + " at group " + groupId.toString(), e);
StaticHibernateUtil.rollbackTransaction();
errorList.add(groupId.toString());
} finally {
StaticHibernateUtil.closeSession();
}
}
long time2 = new DateTimeService().getCurrentDateTime().getMillis();
getLogger().info("PortfolioAtRiskTask ran in " + (time2 - time1) + " milliseconds");
if (errorList.size() > 0) {
throw new BatchJobException(SchedulerConstants.FAILURE, errorList);
}
}
Aggregations