Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -553,6 +553,7 @@ private Integer applyForRecurringDepositApplication(final String clientID, final
}

@Test
@Ignore // TODO FINERACT-899
public void checkPeriodicAccrualAccountingFlow() {
final Account assetAccount = this.accountHelper.createAssetAccount();
final Account incomeAccount = this.accountHelper.createIncomeAccount();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,6 @@ public void checkClientLoanCreateAndDisburseFlow() {
final ArrayList<HashMap> loanSchedule = this.loanTransactionHelper.getLoanRepaymentSchedule(this.requestSpec, this.responseSpec,
loanID);
verifyLoanRepaymentSchedule(loanSchedule);

}

@Test
Expand Down Expand Up @@ -2563,6 +2562,7 @@ public void loanWithFlatCahargesAndPeriodicAccrualAccountingEnabled() {
* charges with calculation type percentage of amount
*/
@Test
@Ignore // TODO FINERACT-885
public void loanWithCahargesOfTypeAmountPercentageAndPeriodicAccrualAccountingEnabled() {
this.journalEntryHelper = new JournalEntryHelper(this.requestSpec, this.responseSpec);
this.schedulerJobHelper = new SchedulerJobHelper(this.requestSpec, this.responseSpec);
Expand Down Expand Up @@ -2762,6 +2762,7 @@ public void loanWithCahargesOfTypeAmountPercentageAndPeriodicAccrualAccountingEn
* charges with calculation type percentage of amount and interest
*/
@Test
@Ignore // TODO FINERACT-885
public void loanWithCahargesOfTypeAmountPlusInterestPercentageAndPeriodicAccrualAccountingEnabled() {
this.journalEntryHelper = new JournalEntryHelper(this.requestSpec, this.responseSpec);
this.schedulerJobHelper = new SchedulerJobHelper(this.requestSpec, this.responseSpec);
Expand Down Expand Up @@ -5079,7 +5080,7 @@ private Integer applyForLoanApplicationWithProductConfigurationAsFalse(final Int
return this.loanTransactionHelper.getLoanId(loanApplicationJSON);
}

public Integer getDayOfWeek(Calendar date) {
private Integer getDayOfWeek(Calendar date) {
int dayOfWeek = 0;
if (null != date) {
dayOfWeek = date.get(Calendar.DAY_OF_WEEK) - 1;
Expand All @@ -5090,7 +5091,7 @@ public Integer getDayOfWeek(Calendar date) {
return Integer.valueOf(dayOfWeek);
}

public Integer getDayOfMonth(Calendar date) {
private Integer getDayOfMonth(Calendar date) {
int dayOfMonth = 0;
if (null != date) {
dayOfMonth = date.get(Calendar.DAY_OF_MONTH);
Expand Down