-
Notifications
You must be signed in to change notification settings - Fork 2.5k
FINERACT-9: Repayment-Transactions-allocated-to-FINANCIAL_ACTIVITY.LIABILITY_TRANSFER #5881
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -261,13 +261,14 @@ public SavingsDTO populateSavingsDtoFromMap(final Map<String, Object> accounting | |
| } | ||
| } | ||
|
|
||
| if (!isAccountTransfer) { | ||
| isAccountTransfer = this.accountTransfersReadPlatformService.isAccountTransfer(Long.parseLong(transactionId), | ||
| boolean localIsAccountTransfer = isAccountTransfer; | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Meaningless change...
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. What does it help to copy into a new local variable? |
||
| if (!localIsAccountTransfer) { | ||
| localIsAccountTransfer = this.accountTransfersReadPlatformService.isAccountTransfer(Long.parseLong(transactionId), | ||
| PortfolioAccountType.SAVINGS); | ||
| } | ||
|
a7med3del1973 marked this conversation as resolved.
|
||
| final SavingsTransactionDTO transaction = new SavingsTransactionDTO(transactionOfficeId, paymentTypeId, transactionId, | ||
| transactionDate, transactionType, amount, reversed, feePayments, penaltyPayments, overdraftAmount, isAccountTransfer, | ||
| taxPayments); | ||
| transactionDate, transactionType, amount, reversed, feePayments, penaltyPayments, overdraftAmount, | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Meaning less change... |
||
| localIsAccountTransfer, taxPayments); | ||
|
Comment on lines
+264
to
+271
|
||
|
|
||
| newSavingsTransactions.add(transaction); | ||
|
|
||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Unrelated change: it has nothing to do with linked story and PR description.
Please remove and raise a new PR with this.