RamsesCamacho1171 commented on code in PR #4608:
URL: https://github.com/apache/fineract/pull/4608#discussion_r2056733260
##########
fineract-provider/src/main/java/org/apache/fineract/infrastructure/bulkimport/populator/fixeddeposits/FixedDepositTransactionWorkbookPopulator.java:
##########
@@ -203,7 +204,12 @@ private void populateSavingsTable(Sheet
savingsTransactionSheet, String dateForm
row = savingsTransactionSheet.createRow(rowIndex++);
writeString(TransactionConstants.LOOKUP_CLIENT_NAME_COL, row,
savingsAccount.getClientName() + "(" +
savingsAccount.getClientId() + ")");
- writeString(TransactionConstants.LOOKUP_ACCOUNT_NO_COL, row,
savingsAccount.getAccountNo());
+ try {
+ BigDecimal accountNoAsBigDecimal = new
BigDecimal(savingsAccount.getAccountNo());
Review Comment:
The problem is that when I put the account number as a string in the Excel
formulas, it's not working correctly. I tried changing the formulas directly,
but it didn't work. What do you recommend? @adamsaghy @oleksii-novikov-onix
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]