Skip to content

Commit

Permalink
Fix/fsf 23 qa (#995)
Browse files Browse the repository at this point in the history
* fix FSF-9

* fix FSF-4 (#945)

* Fix/fsf 11 (#947)

* fix FSF-4

* fix FSF-11

* Fix/fsf 11 (#950)

* fix FSF-4

* fix FSF-11

* fix FSF-11

* fix FSF-17 (#957)

* fix FSF-15

* fix FSF-12

* fix FSF-19

* fix FSF-19 (#969)

* Fix/fs 18 (#977)

* fix FSF-19

* FIX FSF-18

* Fix/fsf 20 (#980)

* fix FSF-19

* FIX FSF-18

* FIX FSF-20

* QA-FSF-18-20

* Fix/fsf 21 (#989)

* FSF 22

* FSF 22

* Fix/fsf 21 (#990)

* FSF 22

* FSF 22

* FSF 22

* FSF 23 (#992)
  • Loading branch information
BrianMuhimbura authored Aug 6, 2024
1 parent 325df20 commit 1ae0de4
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1570,8 +1570,10 @@ public CommandProcessingResult modifyApplication(final Long loanId, final JsonCo
} else {
additionals.update(command);
}
String deleteExtraLoans = "delete from m_loan_external_existing_loans where loan_id=?";
this.jdbcTemplate.update(deleteExtraLoans, existingLoanApplication.getId());
updateExternalLoans(command, additionals);
this.groupLoanAdditionalsRepository.save(additionals);
this.groupLoanAdditionalsRepository.saveAndFlush(additionals);
}

if (productRelatedDetail.isInterestRecalculationEnabled()) {
Expand Down

0 comments on commit 1ae0de4

Please sign in to comment.