Skip to content
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

[FIX] 거래내역 조회 내림차순으로 수정 및 컬럼 추가 #114

Merged
merged 2 commits into from
Aug 29, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ private void extractTransactionDetails(String accountNo, String userKey, Transac
.transactionBalance(Long.valueOf(transaction.get("transactionBalance").toString()))
.transactionAfterBalance(Long.valueOf(transaction.get("transactionAfterBalance").toString()))
.transactionSummary((String) transaction.get("transactionSummary"))
.transactionMemo((String) transaction.get("transactionMemo"))
.build();
transactionDetails.add(detail);
}
Expand Down Expand Up @@ -104,7 +105,7 @@ private Map<String, Object> createRequestBody(String accountNo, String userKey,
body.put("startDate", request.getStartDate());
body.put("endDate", request.getEndDate());
body.put("transactionType", "A");
body.put("orderByType", "ASC");
body.put("orderByType", "DESC");

return body;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,5 @@ public class TransactionDetailResponse {
private Long transactionBalance;
private Long transactionAfterBalance;
private String transactionSummary;
private String transactionMemo;
}
Loading