import { NumericFormat } from 'react-number-format';
import {
InfoWrapKeys,
AmountInfoWrapProps,
SettlementPeriodType
} from '@/entities/settlement/model/types';
export const AmountInfoWrap = ({
periodType,
amountInfo,
}: AmountInfoWrapProps) => {
return (
<>
금액 정보
{ (periodType === SettlementPeriodType.SETTLEMENT_DATE) &&
-
거래금액 합계
6,017,600 (269건)
-
· 신용카드
6,017,000 (260건)
-
· 계좌이체
600 (9건)
-
PG 수수료 합계
205,255
-
· 결제수수료
165,384
-
· 에스크로 수수료
0
-
· 인증 수수료
21,300
-
· VAT
18,571
-
보류
0
-
해제
0
-
상계
- 80,603
-
정산금액
5,731,742
}
{ (periodType === SettlementPeriodType.TRANSACTION_DATE) &&
}
>
);
};