- 링크결제 API 수정

- 지급대행 수정
This commit is contained in:
HyeonJongKim
2025-10-21 14:24:51 +09:00
parent c3fbb91888
commit ab5bea6aeb
30 changed files with 784 additions and 590 deletions

View File

@@ -2,6 +2,13 @@ export const getPaymentStatusText = (status?: string): string => {
if (!status) return '';
const statusMap: Record<string, string> = {
// 숫자 문자열 매핑
'0': '미완료/활성화',
'1': '입금요청',
'2': '결제완료',
'3': '결제실패',
'4': '결제중단',
// 문자열 키 매핑 (하위 호환성)
'ALL': '전체',
'ACTIVE': '미완료/활성화',
'DEPOSIT_REQUEST': '입금요청',