부가서비스
- KeyIn결제 상태값에 따른 sort 오류 수정
This commit is contained in:
@@ -122,9 +122,9 @@ export interface FilterProps {
|
||||
|
||||
export enum KeyInPaymentTransactionStatus {
|
||||
ALL = 'ALL',
|
||||
APPROVE = 'APPROVE',
|
||||
ALL_CANCEL = 'ALL_CANCEL',
|
||||
AFTER_CANCEL = 'AFTER_CANCEL'
|
||||
APPROVAL = 'APPROVAL',
|
||||
PRE_CANCEL = 'PRE_CANCEL',
|
||||
POST_CANCEL = 'POST_CANCEL'
|
||||
}
|
||||
|
||||
export interface KeyInPaymentListItem {
|
||||
@@ -587,7 +587,7 @@ export interface ExtensionLinkPayWaitDeleteRespone {
|
||||
export interface ExtensionAccountHolderAuthListParams extends ExtensionRequestParams {
|
||||
fromDate: string;
|
||||
toDate: string;
|
||||
authStatus: String;
|
||||
authStatus: string;
|
||||
page?: DefaultRequestPagination;
|
||||
}
|
||||
|
||||
|
||||
@@ -65,9 +65,9 @@ export const KeyInPaymentFilter = ({
|
||||
|
||||
let transactionStatusOption = [
|
||||
{ name: '전체', value: KeyInPaymentTransactionStatus.ALL },
|
||||
{ name: '승인', value: KeyInPaymentTransactionStatus.APPROVE },
|
||||
{ name: '전취소', value: KeyInPaymentTransactionStatus.ALL_CANCEL },
|
||||
{ name: '후취소', value: KeyInPaymentTransactionStatus.AFTER_CANCEL },
|
||||
{ name: '승인', value: KeyInPaymentTransactionStatus.APPROVAL },
|
||||
{ name: '전취소', value: KeyInPaymentTransactionStatus.PRE_CANCEL },
|
||||
{ name: '후취소', value: KeyInPaymentTransactionStatus.POST_CANCEL },
|
||||
]
|
||||
|
||||
return (
|
||||
|
||||
Reference in New Issue
Block a user