This commit is contained in:
focp212@naver.com
2025-10-16 18:10:11 +09:00
parent fd502d71b2
commit f4e2fe4769
14 changed files with 421 additions and 138 deletions

View File

@@ -39,6 +39,101 @@ export const AllTransactionServiceCodeOptionsGroup = [
{name: '티머니페이', value: AllTransactionServiceCode.TMONEY},
];
export const AllTracsactionStatusCode = [
{
serviceCode: '',
list: [
{code: '', ko: '전체', en: 'All'},
{code: '0', ko: '승인/입금완료', en: 'Approval'},
{code: '1', ko: '전취소/취소', en: 'Total Cancellation'},
{code: '2', ko: '후취소/환불', en: 'Cancellation'}
]
},
{
serviceCode: '01',
list: [
{code: '', ko: '전체', en: 'All'},
{code: '0', ko: '승인', en: 'Approval'},
{code: '1', ko: '전취소', en: 'Total Cancellation'},
{code: '2', ko: '후취소', en: 'Cancellation'}
]
},
{
serviceCode: '02',
list: [
{code: '', ko: '전체', en: 'All'},
{code: '0', ko: '승인', en: 'Approval'},
{code: '1', ko: '취소', en: 'Cancellation'},
{code: '2', ko: '환불', en: 'Refund'},
]
},
{
serviceCode: '03',
list: [
{code: '', ko: '전체', en: 'All'},
{code: '0', ko: '입금', en: 'Payment Complete'},
{code: '2', ko: '환불', en: 'Refund'},
{code: '3', ko: '입금대기', en: 'Waiting Payment'},
{code: '4', ko: '채번취소', en: 'Cancellation Issue'},
]
},
{
serviceCode: '05',
list: [
{code: '', ko: '전체', en: 'All'},
{code: '0', ko: '승인', en: 'Approval'},
{code: '1', ko: '취소', en: 'Cancellation'},
{code: '2', ko: '환불', en: 'Refund'},
]
},
{
serviceCode: '14',
list: [
{code: '', ko: '전체', en: 'All'},
{code: '0', ko: '승인', en: 'Approval'},
{code: '1', ko: '취소', en: 'Cancellation'},
{code: '2', ko: '환불', en: 'Refund'},
]
},
{
serviceCode: '21',
list: [
{code: '', ko: '전체', en: 'All'},
{code: '0', ko: '승인', en: 'Approval'},
{code: '1', ko: '취소', en: 'Cancellation'},
{code: '2', ko: '환불', en: 'Refund'},
]
},
{
serviceCode: '24',
list: [
{code: '', ko: '전체', en: 'All'},
{code: '0', ko: '승인', en: 'Approval'},
{code: '1', ko: '취소', en: 'Cancellation'},
{code: '2', ko: '환불', en: 'Refund'},
]
},
{
serviceCode: '26',
list: [
{code: '', ko: '전체', en: 'All'},
{code: '0', ko: '승인', en: 'Approval'},
{code: '1', ko: '취소', en: 'Cancellation'},
{code: '2', ko: '환불', en: 'Refund'},
]
},
{
serviceCode: '31',
list: [
{code: '', ko: '전체', en: 'All'},
{code: '0', ko: '승인', en: 'Approval'},
{code: '1', ko: '전취소', en: 'Total Cancellation'},
{code: '2', ko: '후취소', en: 'Cancellation'},
]
},
];
export const AllTransactionCardBankCodeOptionsGroup = {
};

View File

@@ -156,6 +156,7 @@ export interface AllTransactionListItem {
transactionDateTime?: string;
statusCode?: string;
installmentMonth?: string;
serviceName?: string;
serviceCode?: string;
serviceDetailName?: string;
goodsAmount?: number;
@@ -279,7 +280,7 @@ export interface BillingListParams {
};
export interface AllTransactionDetailParams {
svcCd?: string;
serviceCode?: string;
tid?: string;
};
export interface CashReceiptDetailParams {
@@ -309,20 +310,17 @@ export interface AmountInfo {
escrowFee?: number;
};
export interface ImportantInfo {
ordNo?: string;
moid?: string;
tid?: string;
tradeStatus?: string;
tradeMethod?: string;
productName?: string;
transactionStatus?: string;
statusName?: string;
serviceCode?: string;
serviceName?: string;
approvalDate?: string;
tradeDate?: string;
transactionDate?: string;
requestDate?: string;
cancelDate?: string;
mid?: string;
orderNumber?: string;
transactionStatus?: string;
paymentMethod?: string;
approvalDateTime?: string;
goodsName?: string;
};
export interface PaymentInfo {
approvalAcquire?: string;