계좌성명 조회 페이지 UI 추가 (내역,상세,요청,필터)

This commit is contained in:
HyeonJongKim
2025-09-12 17:32:48 +09:00
parent 65bbfc12b9
commit 3b89dbdbb6
12 changed files with 782 additions and 144 deletions

View File

@@ -23,6 +23,16 @@ export enum SortByKeys {
New = 'New',
Amount = 'Amount',
};
export enum AccountHolderSearchType {
ALL = 'ALL',
ACCOUNT_HOLDER = 'ACCOUNT_HOLDER',
ACCOUNT_NUMBER = 'ACCOUNT_NUMBER'
};
export enum AccountHolderSearchProcessResult {
ALL = 'ALL',
SUCCESS = 'SUCCESS',
FAILURE = 'FAILURE'
};
export interface SortOptionsBoxProps {
sortBy: SortByKeys;
onClickToSort: (sortBy: SortByKeys) => void;
@@ -232,7 +242,7 @@ export interface ExtensionAlimtalkSettingSaveResponse {
};
export interface ExtensionAlimtalkSettingDetailParams extends ExtensionRequestParams {
};
export interface ExtensionAlimtalkSettingDetailItem {
sendMerchantInfo: SendMerchantInfoItem;
@@ -311,10 +321,34 @@ export interface SettlementAgencyBottomAgreeProps {
bottomAgreeOn: boolean;
setBottomAgreeOn: (bottomAgreeOn: boolean) => void;
};
export interface LinkPaymentFilterProps {
filterOn: boolean;
setFilterOn: (filterOn: boolean) => void;
/**
* FilterProps
*/
export interface FilterProps {
filterOn: boolean;
setFilterOn: (filterOn: boolean) => void;
};
export interface AccountHolderSearchFilterProps extends FilterProps {
mid: string;
searchType: AccountHolderSearchType;
searchKeyword: string;
startDate: string;
endDate: string;
bank: string;
processResult: AccountHolderSearchProcessResult;
setMid: (mid: string) => void;
setSearchType: (searchType: AccountHolderSearchType) => void;
setSearchKeyword: (searchKeyWorld: string) => void;
setStartDate: (startDate: string) => void;
setEndDate: (endDate: string) => void;
setBank: (bank: string) => void;
setProcessResult: (processResult: AccountHolderSearchProcessResult) => void;
}
export interface LinkPaymentFilterProps extends FilterProps {
};
export enum DetailInfoSectionKeys {
Payment = 'Payment',
Deets = 'Deets'