Skip to content

Commit

Permalink
Fix ad67
Browse files Browse the repository at this point in the history
  • Loading branch information
Tedyyy-Albur committed Nov 4, 2024
1 parent b255bcc commit 936d58c
Showing 1 changed file with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,7 @@
import java.util.HashSet;
import java.util.List;
import java.util.Set;
import lombok.RequiredArgsConstructor;
import lombok.extern.slf4j.Slf4j;

import org.apache.fineract.infrastructure.configuration.domain.ConfigurationDomainService;
import org.apache.fineract.infrastructure.core.data.CommandProcessingResult;
import org.apache.fineract.infrastructure.core.domain.LocalDateInterval;
Expand Down Expand Up @@ -55,6 +54,9 @@
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;

import lombok.RequiredArgsConstructor;
import lombok.extern.slf4j.Slf4j;

@Slf4j
@Service
@RequiredArgsConstructor
Expand Down Expand Up @@ -165,7 +167,7 @@ private void addAccrualTransactions(SavingsAccount savingsAccount, final LocalDa
.fromInt(savingsAccount.getInterestCalculationType());

final SavingsCompoundingInterestPeriodType compoundingPeriodType = SavingsCompoundingInterestPeriodType
.fromInt(savingsAccount.getInterestCompoundingPeriodType());
.fromInt(savingsAccount.getInterestCalculationType());

final SavingsInterestCalculationDaysInYearType daysInYearType = SavingsInterestCalculationDaysInYearType
.fromInt(savingsAccount.getInterestCalculationDaysInYearType());
Expand Down

0 comments on commit 936d58c

Please sign in to comment.