KEY-IN 결제 상태 문제 FULL_CANCEL : 전취소, PARTIAL_CANCEL : 후취소

This commit is contained in:
Jay Sheen
2025-11-03 14:33:01 +09:00
parent c6b821a351
commit 4a112ebb32
4 changed files with 7 additions and 11 deletions

View File

@@ -4,8 +4,8 @@ import { KeyInPaymentTansactionType } from "./types";
export const getKeyInPaymentPaymentStatusBtnGroup = (t: TFunction) => [ export const getKeyInPaymentPaymentStatusBtnGroup = (t: TFunction) => [
{ name: t('transaction.constants.all'), value: KeyInPaymentTansactionType.ALL }, { name: t('transaction.constants.all'), value: KeyInPaymentTansactionType.ALL },
{ name: t('transaction.constants.approval'), value: KeyInPaymentTansactionType.APPROVAL }, { name: t('transaction.constants.approval'), value: KeyInPaymentTansactionType.APPROVAL },
{ name: t('additionalService.keyIn.preCancel'), value: KeyInPaymentTansactionType.PRE_CANCEL }, { name: t('additionalService.keyIn.fullCancel'), value: KeyInPaymentTansactionType.FULL_CANCEL },
{ name: t('additionalService.keyIn.postCancel'), value: KeyInPaymentTansactionType.POST_CANCEL } { name: t('additionalService.keyIn.partialCancel'), value: KeyInPaymentTansactionType.PARTIAL_CANCEL },
]; ];
export const getKeyInPaymentPaymentStatusName = (t: TFunction) => (status?: string): string => { export const getKeyInPaymentPaymentStatusName = (t: TFunction) => (status?: string): string => {

View File

@@ -7,8 +7,8 @@ import { AdditionalServiceCategory, ExtensionRequestParams, FilterProps } from "
export enum KeyInPaymentTansactionType { export enum KeyInPaymentTansactionType {
ALL = 'ALL', ALL = 'ALL',
APPROVAL = 'APPROVAL', APPROVAL = 'APPROVAL',
PRE_CANCEL = 'PRE_CANCEL', FULL_CANCEL = 'FULL_CANCEL',
POST_CANCEL = 'POST_CANCEL' PARTIAL_CANCEL = 'PARTIAL_CANCEL'
} }
export enum KeyInPaymentStatus { export enum KeyInPaymentStatus {

View File

@@ -1059,10 +1059,8 @@
"progressStatus": "Progress Status" "progressStatus": "Progress Status"
}, },
"keyIn": { "keyIn": {
"fullCancel": "Full Cancel", "fullCancel": "Pre-cancel",
"partialCancel": "Partial Cancel", "partialCancel": "Post-cancel",
"preCancel": "Pre-cancel",
"postCancel": "Post-cancel",
"productPrice": "Product Price" "productPrice": "Product Price"
}, },
"infoWrap": { "infoWrap": {

View File

@@ -1059,9 +1059,7 @@
"progressStatus": "진행상태" "progressStatus": "진행상태"
}, },
"keyIn": { "keyIn": {
"fullCancel": "전취소", "fullCancel":"전취소",
"partialCancel": "부분취소",
"preCancel": "전취소",
"postCancel": "후취소", "postCancel": "후취소",
"productPrice": "상품가격" "productPrice": "상품가격"
}, },