Skip to content

Commit

Permalink
fix big decimal visualization
Browse files Browse the repository at this point in the history
  • Loading branch information
lucaconsalvi committed Dec 12, 2024
1 parent b9eecaa commit 25348de
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ public SepaRequestToPayRequestResourceDto toRequestToPay(Rtp rtp) {

ActiveOrHistoricCurrencyAndAmountEPC25922V30DS02WrapperDto activeOrHistoricCurrencyAndAmountEPC25922V30DS02WrapperDto = new ActiveOrHistoricCurrencyAndAmountEPC25922V30DS02WrapperDto();
activeOrHistoricCurrencyAndAmountEPC25922V30DS02WrapperDto
.setInstdAmt(BigDecimal.valueOf(rtp.amount() / 100));
.setInstdAmt(BigDecimal.valueOf(rtp.amount(), 2));

Max35TextWrapperDto cdtMax35TextWrapperDto = new Max35TextWrapperDto();
cdtMax35TextWrapperDto.setPrtry("LEI");// FIXED
Expand Down

0 comments on commit 25348de

Please sign in to comment.