필터 수정

This commit is contained in:
focp212@naver.com
2025-11-20 10:50:17 +09:00
parent 5c03f7f021
commit cce6808bd8
12 changed files with 30 additions and 2 deletions

View File

@@ -76,7 +76,7 @@ export const TransactionInfoSection = ({
<span className="k">·&nbsp;&nbsp;{ 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">·&nbsp;&nbsp;{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">