Search in sources :

Example 6 with GraceType

use of org.mifos.accounts.productdefinition.util.helpers.GraceType in project head by mifos.

the class DecliningBalanceEqualPrincipalWithInterestGenerator method generateEqualInstallments.

@Override
public List<InstallmentPrincipalAndInterest> generateEqualInstallments(LoanInterestCalculationDetails loanInterestCalculationDetails) {
    Money loanAmount = loanInterestCalculationDetails.getLoanAmount();
    Integer numberOfInstallments = loanInterestCalculationDetails.getNumberOfInstallments();
    Double interestFractionalRatePerInstallment = loanInterestCalculationDetails.getInterestFractionalRatePerInstallment();
    GraceType graceType = loanInterestCalculationDetails.getGraceType();
    Integer gracePeriodDuration = loanInterestCalculationDetails.getGracePeriodDuration();
    //For M5193
    int prorateValue = 0;
    List<InstallmentPrincipalAndInterest> lstInstallmntPricplIntrst = null;
    LocalDate disbursalDateInLocalDate = loanInterestCalculationDetails.getDisbursementDate();
    DateTime disbursalDate = disbursalDateInLocalDate.toDateTimeAtStartOfDay();
    List<DateTime> scheduledDates = loanInterestCalculationDetails.getLoanScheduleDates();
    if (scheduledDates.size() > 2) {
        //chek whether loanscheduledDates are there
        DateTime firstRepaymentDay = scheduledDates.get(0);
        long differenceOfTwoDatesinMilliseconds = (firstRepaymentDay.toDate().getTime() - disbursalDate.toDate().getTime());
        long noOfDays = differenceOfTwoDatesinMilliseconds / (1000 * 60 * 60 * 24);
        int noOfDaysBetweenFirstRepaymentDayAndDisbursalDate = (int) noOfDays;
        DateTime secondRepaymentDay = scheduledDates.get(1);
        long duration = (secondRepaymentDay.toDate().getTime() - firstRepaymentDay.toDate().getTime()) / (1000 * 60 * 60 * 24);
        int noOfDaysInOneSchedule = (int) duration;
        prorateValue = new ConfigurationPersistence().getConfigurationValueInteger(PRORATE_RULE);
        if (prorateValue == 1)
            lstInstallmntPricplIntrst = allDecliningEPIInstallments_v2(loanAmount, numberOfInstallments, interestFractionalRatePerInstallment, graceType, gracePeriodDuration, noOfDaysBetweenFirstRepaymentDayAndDisbursalDate, noOfDaysInOneSchedule);
    }
    if (prorateValue != 1) {
        lstInstallmntPricplIntrst = allDecliningEPIInstallments_v2(loanAmount, numberOfInstallments, interestFractionalRatePerInstallment, graceType, gracePeriodDuration);
    }
    return lstInstallmntPricplIntrst;
}
Also used : Money(org.mifos.framework.util.helpers.Money) GraceType(org.mifos.accounts.productdefinition.util.helpers.GraceType) ConfigurationPersistence(org.mifos.config.persistence.ConfigurationPersistence) InstallmentPrincipalAndInterest(org.mifos.accounts.loan.util.helpers.InstallmentPrincipalAndInterest) LocalDate(org.joda.time.LocalDate) DateTime(org.joda.time.DateTime)

Example 7 with GraceType

use of org.mifos.accounts.productdefinition.util.helpers.GraceType in project head by mifos.

the class IndividualLoanScheduleFactory method create.

@Override
public LoanSchedule create(LocalDate disbursementDate, List<DateTime> loanScheduleDates, List<Number> totalInstallmentAmounts, LoanOfferingBO loanProduct, CustomerBO customer, MeetingBO loanMeeting, Money loanAmount, Double interestRate, Integer interestDays, Integer gracePeriodDuration, List<AccountFeesEntity> accountFees) {
    GraceType graceType = loanProduct.getGraceType();
    InterestType interestType = loanProduct.getInterestType();
    boolean variableInstallmentLoanProduct = loanProduct.isVariableInstallmentsAllowed();
    boolean roundingDifferenceInFirstPayment = loanProduct.isRoundingDifferenceInFirstPayment();
    Integer numberOfInstallments = loanScheduleDates.size();
    RecurringScheduledEventFactory scheduledEventFactory = new RecurringScheduledEventFactoryImpl();
    ScheduledEvent meetingScheduledEvent = scheduledEventFactory.createScheduledEventFrom(loanMeeting);
    Integer installmentNumber = 1;
    List<InstallmentDate> dueInstallmentDates = new ArrayList<InstallmentDate>();
    for (DateTime scheduledDate : loanScheduleDates) {
        dueInstallmentDates.add(new InstallmentDate(installmentNumber.shortValue(), scheduledDate.toLocalDate().toDateMidnight().toDate()));
        installmentNumber++;
    }
    if (loanProduct.isPrinDueLastInst()) {
        // Principal due on last installment has been cut, so throw an exception if we reach this code.
        throw new BusinessRuleException(AccountConstants.NOT_SUPPORTED_EMI_GENERATION);
    }
    // loan interest calculation for various interest calculation algorithms
    LoanDecliningInterestAnnualPeriodCalculator decliningInterestAnnualPeriodCalculator = new LoanDecliningInterestAnnualPeriodCalculatorFactory().create(loanMeeting.getRecurrenceType());
    Double decliningInterestAnnualPeriod = decliningInterestAnnualPeriodCalculator.calculate(loanMeeting.getRecurAfter().intValue(), interestDays);
    Double interestFractionalRatePerInstallment = interestRate / decliningInterestAnnualPeriod / 100;
    LoanDurationInAccountingYearsCalculator loanDurationInAccountingYearsCalculator = new LoanDurationInAccountingYearsCalculatorFactory().create(loanMeeting.getRecurrenceType());
    Double durationInYears = loanDurationInAccountingYearsCalculator.calculate(loanMeeting.getRecurAfter().intValue(), numberOfInstallments, interestDays);
    List<Money> totalInstallmentAmountsAsMoney = new ArrayList<Money>();
    for (Number totalInstallmentAmount : totalInstallmentAmounts) {
        Money totalAmount = new Money(loanAmount.getCurrency(), BigDecimal.valueOf(totalInstallmentAmount.doubleValue()));
        totalInstallmentAmountsAsMoney.add(totalAmount);
    }
    LoanInterestCalculationDetails loanInterestCalculationDetails = new LoanInterestCalculationDetails(loanAmount, interestRate, graceType, gracePeriodDuration, numberOfInstallments, durationInYears, interestFractionalRatePerInstallment, disbursementDate, loanScheduleDates);
    loanInterestCalculationDetails.setTotalInstallmentAmounts(totalInstallmentAmountsAsMoney);
    LoanInterestCalculatorFactory loanInterestCalculatorFactory = new LoanInterestCalculatorFactoryImpl();
    LoanInterestCalculator loanInterestCalculator = loanInterestCalculatorFactory.create(interestType, variableInstallmentLoanProduct);
    Money loanInterest = loanInterestCalculator.calculate(loanInterestCalculationDetails);
    // end of loan Interest creation
    EqualInstallmentGeneratorFactory equalInstallmentGeneratorFactory = new EqualInstallmentGeneratorFactoryImpl();
    PrincipalWithInterestGenerator equalInstallmentGenerator = equalInstallmentGeneratorFactory.create(interestType, loanInterest, variableInstallmentLoanProduct);
    List<InstallmentPrincipalAndInterest> EMIInstallments = equalInstallmentGenerator.generateEqualInstallments(loanInterestCalculationDetails);
    List<LoanScheduleEntity> unroundedLoanSchedules = createUnroundedLoanSchedulesFromInstallments(dueInstallmentDates, loanInterest, loanAmount, meetingScheduledEvent, EMIInstallments, accountFees, customer);
    Money rawAmount = calculateTotalFeesAndInterestForLoanSchedules(unroundedLoanSchedules, loanAmount.getCurrency(), accountFees);
    List<LoanScheduleEntity> allExistingLoanSchedules = new ArrayList<LoanScheduleEntity>();
    List<LoanScheduleEntity> finalisedLoanSchedules = new ArrayList<LoanScheduleEntity>(unroundedLoanSchedules);
    if (variableInstallmentLoanProduct && totalInstallmentAmounts.isEmpty()) {
        // only round inital loan schedule of variable installments product.
        LoanScheduleRounder loanScheduleInstallmentRounder = new VariableInstallmentLoanScheduleRounder();
        finalisedLoanSchedules = loanScheduleInstallmentRounder.round(graceType, gracePeriodDuration.shortValue(), loanAmount, interestType, unroundedLoanSchedules, allExistingLoanSchedules);
    } else if (!variableInstallmentLoanProduct && roundingDifferenceInFirstPayment) {
        LoanScheduleRounderHelper loanScheduleRounderHelper = new DefaultLoanScheduleRounderHelper();
        LoanScheduleRounder loanScheduleInstallmentRounder = new FirstInstallmentRoudingDifferenceLoanScheduleRounder(loanScheduleRounderHelper);
        finalisedLoanSchedules = loanScheduleInstallmentRounder.round(graceType, gracePeriodDuration.shortValue(), loanAmount, interestType, unroundedLoanSchedules, allExistingLoanSchedules);
    } else if (!variableInstallmentLoanProduct) {
        LoanScheduleRounderHelper loanScheduleRounderHelper = new DefaultLoanScheduleRounderHelper();
        LoanScheduleRounder loanScheduleInstallmentRounder = new DefaultLoanScheduleRounder(loanScheduleRounderHelper);
        finalisedLoanSchedules = loanScheduleInstallmentRounder.round(graceType, gracePeriodDuration.shortValue(), loanAmount, interestType, unroundedLoanSchedules, allExistingLoanSchedules);
    }
    return new LoanSchedule(finalisedLoanSchedules, rawAmount);
}
Also used : LoanScheduleEntity(org.mifos.accounts.loan.business.LoanScheduleEntity) ArrayList(java.util.ArrayList) DateTime(org.joda.time.DateTime) InstallmentDate(org.mifos.accounts.util.helpers.InstallmentDate) Money(org.mifos.framework.util.helpers.Money) BusinessRuleException(org.mifos.service.BusinessRuleException) GraceType(org.mifos.accounts.productdefinition.util.helpers.GraceType) ScheduledEvent(org.mifos.schedule.ScheduledEvent) InterestType(org.mifos.accounts.productdefinition.util.helpers.InterestType) InstallmentPrincipalAndInterest(org.mifos.accounts.loan.util.helpers.InstallmentPrincipalAndInterest)

Example 8 with GraceType

use of org.mifos.accounts.productdefinition.util.helpers.GraceType in project head by mifos.

the class FlatLoanPrincipalWithInterestGenerator method generateEqualInstallments.

@Override
public List<InstallmentPrincipalAndInterest> generateEqualInstallments(LoanInterestCalculationDetails loanInterestCalculationDetails) {
    GraceType graceType = loanInterestCalculationDetails.getGraceType();
    Integer gracePeriodDuration = loanInterestCalculationDetails.getGracePeriodDuration();
    Money loanAmount = loanInterestCalculationDetails.getLoanAmount();
    Integer numberOfInstallments = loanInterestCalculationDetails.getNumberOfInstallments();
    return allFlatInstallments_v2(loanInterest, graceType, loanAmount, numberOfInstallments, gracePeriodDuration);
}
Also used : Money(org.mifos.framework.util.helpers.Money) GraceType(org.mifos.accounts.productdefinition.util.helpers.GraceType)

Aggregations

GraceType (org.mifos.accounts.productdefinition.util.helpers.GraceType)8 Money (org.mifos.framework.util.helpers.Money)7 DateTime (org.joda.time.DateTime)5 InstallmentPrincipalAndInterest (org.mifos.accounts.loan.util.helpers.InstallmentPrincipalAndInterest)4 ArrayList (java.util.ArrayList)3 LocalDate (org.joda.time.LocalDate)3 InterestType (org.mifos.accounts.productdefinition.util.helpers.InterestType)3 InstallmentDate (org.mifos.accounts.util.helpers.InstallmentDate)2 ConfigurationPersistence (org.mifos.config.persistence.ConfigurationPersistence)2 PersistenceException (org.mifos.framework.exceptions.PersistenceException)2 ScheduledEvent (org.mifos.schedule.ScheduledEvent)2 AccountActionDateEntity (org.mifos.accounts.business.AccountActionDateEntity)1 AccountException (org.mifos.accounts.exceptions.AccountException)1 FeeBO (org.mifos.accounts.fees.business.FeeBO)1 FeeDao (org.mifos.accounts.fees.persistence.FeeDao)1 GLCodeEntity (org.mifos.accounts.financial.business.GLCodeEntity)1 FundBO (org.mifos.accounts.fund.business.FundBO)1 LoanScheduleEntity (org.mifos.accounts.loan.business.LoanScheduleEntity)1 PenaltyBO (org.mifos.accounts.penalties.business.PenaltyBO)1 LoanAmountCalculation (org.mifos.accounts.productdefinition.LoanAmountCalculation)1