payverse 적용 #344

Merged
klaus merged 44 commits from test into main 2025-10-10 07:44:07 +00:00
Showing only changes of commit 02ef706fc2 - Show all commits

View File

@@ -342,12 +342,15 @@ class ChargeService(
} }
val body = response.body?.string() ?: throw SodaException("결제정보에 오류가 있습니다.") val body = response.body?.string() ?: throw SodaException("결제정보에 오류가 있습니다.")
println(body)
val verifyResponse = objectMapper.readValue(body, PayverseVerifyResponse::class.java) val verifyResponse = objectMapper.readValue(body, PayverseVerifyResponse::class.java)
println(verifyResponse)
val isSuccess = verifyResponse.resultStatus == "SUCCESS" && val isSuccess = verifyResponse.resultStatus == "SUCCESS" &&
verifyResponse.transactionStatus == "SUCCESS" && verifyResponse.transactionStatus == "SUCCESS" &&
verifyResponse.orderId.toLongOrNull() == charge.id && verifyResponse.orderId.toLongOrNull() == charge.id &&
verifyResponse.processingAmount.compareTo(charge.can!!.price) == 0 verifyResponse.processingAmount.compareTo(charge.can!!.price) == 0
println(isSuccess)
if (isSuccess) { if (isSuccess) {
// verify 함수의 232~248 라인과 동일 처리 // verify 함수의 232~248 라인과 동일 처리