- 지급대행 입금확인서 다운로드 활성화 조건 수정

- 일부 확인 스낵바 문자열 다국어화 적용
This commit is contained in:
HyeonJongKim
2025-11-11 18:14:03 +09:00
parent 297215fe09
commit b72d68ede6
11 changed files with 69 additions and 49 deletions

View File

@@ -65,6 +65,7 @@ export const PayoutListPage = () => {
const [detailOn, setDetailOn] = useState<boolean>(false);
const [detailMid, setDetailMid] = useState<string>('');
const [detailTid, setDetailTid] = useState<string>('');
const [detailDepositAmount, setDetailDepositAmount] = useState<number | undefined>();
const { mutateAsync: extensionPayoutList } = useExtensionPayoutListMutation();
const { mutateAsync: extensionPayoutExcel } = useExtensionPayoutExcelMutation();
@@ -196,6 +197,9 @@ export const PayoutListPage = () => {
if (detailData.tid) {
setDetailTid(detailData.tid);
}
if (detailData.depositAmount !== undefined) {
setDetailDepositAmount(detailData.depositAmount);
}
};
const onClickToOpenFilter = () => {
@@ -378,6 +382,7 @@ export const PayoutListPage = () => {
setDetailOn={setDetailOn}
mid={detailMid}
tid={detailTid}
depositAmount={detailDepositAmount}
>
</PayoutDetail>
{ !!downloadBottomSheetOn &&