Skip to content

Commit

Permalink
Merge pull request #14 from one-acre-fund/feat/SER-2099-add-account-n…
Browse files Browse the repository at this point in the history
…umber-under-payee-note

feat: SER-2099 Add payeeNote
  • Loading branch information
shejasabin authored Nov 14, 2023
2 parents bb64220 + ed89b50 commit 80de7c2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).


## [1.0.4] - 2023-11-14
### Updated
- [SER-2099](https://oneacrefund.atlassian.net/browse/SER-2099) Add the OAF account number on the MTN portal reports (updated to send the account number under payeeNote too)

## [1.0.3] - 2023-11-10
### Changed
- Remove the phone number + prefix
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ public PaymentRequestDto channelRequestConvertor(TransactionChannelC2BRequestDTO
paymentRequestDto.setExternalId(transactionId);
paymentRequestDto.setPayer(new Payer(transactionChannelRequestDto.getPayer()[0].getKey(), phoneNumber));
paymentRequestDto.setPayerMessage(transactionChannelRequestDto.getPayer()[1].getValue());
paymentRequestDto.setPayeeNote(transactionChannelRequestDto.getPayer()[1].getValue());
return paymentRequestDto;
}
}

0 comments on commit 80de7c2

Please sign in to comment.