Skip to content

Commit

Permalink
fix payeename for notify
Browse files Browse the repository at this point in the history
  • Loading branch information
pasqualespica committed Nov 13, 2023
1 parent 761ee46 commit f63c239
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,5 @@ bin/
obj/
**/.terraform
**/node_modules
yarn.lock
yarn.lock
**/*.copy
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public static Receipt createReceipt(BizEvent bizEvent, BizEventToReceiptService
bizEvent.getPaymentInfo().getAmount() : null);

CartItem item = new CartItem();
item.setPayeeName(bizEvent.getCreditor() != null ? bizEvent.getCreditor().getOfficeName() : null);
item.setPayeeName(bizEvent.getCreditor() != null ? bizEvent.getCreditor().getCompanyName() : null);
item.setSubject(bizEvent.getPaymentInfo() != null ? bizEvent.getPaymentInfo().getRemittanceInformation() : null);
List<CartItem> cartItems = Collections.singletonList(item);
eventData.setCart(cartItems);
Expand Down

0 comments on commit f63c239

Please sign in to comment.