This commit is contained in:
focp212@naver.com
2025-10-28 18:17:35 +09:00
parent 34143ffa45
commit 9ba963588d
4 changed files with 25 additions and 12 deletions

View File

@@ -318,7 +318,7 @@ export interface EscrowDetailParams {
tid?: string;
};
export interface BillingDetailParams {
billKey?: string;
tid?: string;
};
export interface AmountInfo {
@@ -361,6 +361,8 @@ export interface AmountInfo {
discountType?: string | null;
discountAmount?: number;
simplePaymentServiceCode?: string;
buyerName?: string;
};
export interface ImportantInfo {
moid?: string;
@@ -522,6 +524,7 @@ export interface BillingInfo {
orderNumber: string;
approvalNumber: string;
approvalDate: string;
transactionAmount?: number;
requestStatus: string;
processResult: string;
installmentMonth: string;

View File

@@ -73,7 +73,7 @@ export const ListItem = ({
else if(transactionCategory === TransactionCategory.Billing){
navigate(PATHS.transaction.billing.detail, {
state: {
billKey: billKey
tid: tid,
}
});
}

View File

@@ -461,8 +461,7 @@ export const AmountInfoSection = ({
<div className="txn-doc">
{
((transactionCategory === TransactionCategory.CashReceipt) ||
(transactionCategory === TransactionCategory.Escrow) ||
(transactionCategory === TransactionCategory.Billing)) &&
(transactionCategory === TransactionCategory.Escrow)) &&
!!canDownloadReceipt &&
<button
className="doc-btn"