빌링
This commit is contained in:
@@ -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;
|
||||
|
||||
@@ -73,7 +73,7 @@ export const ListItem = ({
|
||||
else if(transactionCategory === TransactionCategory.Billing){
|
||||
navigate(PATHS.transaction.billing.detail, {
|
||||
state: {
|
||||
billKey: billKey
|
||||
tid: tid,
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user