필터 수정
This commit is contained in:
@@ -76,7 +76,7 @@ export const TransactionInfoSection = ({
|
||||
<span className="k">· { subItems[k]?.name }</span>
|
||||
<span className="v">
|
||||
{ (checkValue(newTransactionInfo[k]) && subItems[k]?.type === 'string') &&
|
||||
newTransactionInfo[k]
|
||||
(k === 'partialCancel')? ((newTransactionInfo[k] === '1')? t('transaction.possible'): t('transaction.impossible')): newTransactionInfo[k]
|
||||
}
|
||||
{ (checkValue(newTransactionInfo[k]) && subItems[k]?.type === 'number') &&
|
||||
t('home.money', { value: new Intl.NumberFormat('en-US').format(newTransactionInfo[k] || 0) })
|
||||
@@ -138,7 +138,7 @@ export const TransactionInfoSection = ({
|
||||
</li>
|
||||
<li className="kv-row">
|
||||
<span className="k">· {t('transaction.fields.partialCancel')}</span>
|
||||
<span className="v">{ transactionInfo?.partialCancel }</span>
|
||||
<span className="v">{ (transactionInfo?.partialCancel === '1')? t('transaction.possible'): t('transaction.impossible') }</span>
|
||||
</li>
|
||||
{ (serviceCode === '02' || serviceCode === '03') &&
|
||||
<li className="kv-row">
|
||||
|
||||
Reference in New Issue
Block a user