- 오류 수정

This commit is contained in:
HyeonJongKim
2025-10-23 13:58:16 +09:00
parent d8ed11b4bf
commit 995bbbdb12
4 changed files with 20 additions and 5 deletions

View File

@@ -39,4 +39,17 @@ export const AlimtalkSendClBtnGroup = [
{name: '요청', value: AlimTalkSendCl.REQUEST },
{name: '성공', value: AlimTalkSendCl.SUCCESS },
{name: '실패', value: AlimTalkSendCl.FAIL }
]
]
export const getAlimtalkServiceCodeText = (status?: string): string => {
if (!status) return '';
const serviceCodeMap: Record<string, string> = {
'CARD': '카드',
'BANK': '계좌이체',
'VBANK': '가상계좌',
'PHONE': '휴대폰'
};
return serviceCodeMap[status] || status;
}