- 링크결제 API 수정
- 지급대행 수정
This commit is contained in:
@@ -21,6 +21,8 @@ export const PayoutDetailPage = () => {
|
||||
const tid = location.state.tid;
|
||||
const mid = location.state.mid;
|
||||
|
||||
const [requestType, setRequestType] = useState<string>('');
|
||||
const [email, setEmail] = useState<string>('');
|
||||
const [detail, setDetail] = useState<ExtensionPayoutDetailResponse>();
|
||||
|
||||
const { mutateAsync: extensionPayoutDetail } = useExtensionPayoutDetailMutation();
|
||||
@@ -48,6 +50,8 @@ export const PayoutDetailPage = () => {
|
||||
let params: ExtensionPayoutDetailDownloadCertificateParams = {
|
||||
tid: tid,
|
||||
mid: mid,
|
||||
requestType: requestType,
|
||||
email: email
|
||||
};
|
||||
extensionPayoutDetailDownloadCertification(params).then((rs: ExtensionPayoutDetailDownloadCertificateResponse) => {
|
||||
console.log(rs);
|
||||
@@ -74,8 +78,8 @@ export const PayoutDetailPage = () => {
|
||||
></NumericFormat>
|
||||
</span>
|
||||
</div>
|
||||
<div className="num-store">나이스테스트가맹점</div>
|
||||
<div className="num-day">2025.08.19</div>
|
||||
<div className="num-store">{detail?.companyName}</div>
|
||||
<div className="num-day">{detail?.settlementDate}</div>
|
||||
<div className="receipt-row">
|
||||
<button
|
||||
className="receipt-btn"
|
||||
@@ -105,7 +109,7 @@ export const PayoutDetailPage = () => {
|
||||
</li>
|
||||
<li className="kv-row">
|
||||
<span className="k">지급일시</span>
|
||||
<span className="v">{ detail?.settlementDate }</span>
|
||||
<span className="v">{ detail?.settlementDateTime }</span>
|
||||
</li>
|
||||
<li className="kv-row">
|
||||
<span className="k">사업자번호</span>
|
||||
|
||||
Reference in New Issue
Block a user