- 지급대행 입금확인서 다운로드 활성화 조건 수정
- 일부 확인 스낵바 문자열 다국어화 적용
This commit is contained in:
@@ -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 &&
|
||||
|
||||
Reference in New Issue
Block a user