Merge branch 'main' of https://gitea.bpsoft.co.kr/nicepayments/nice-app-web
This commit is contained in:
@@ -243,7 +243,7 @@ export const ArsRequestPage = () => {
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div className="billing-row">
|
||||
<div className="billing-row" style={{ paddingBottom: '60px' }}>
|
||||
<div className="billing-label">{t('additionalService.ars.paymentMethod')} <span>*</span></div>
|
||||
<div className="billing-field">
|
||||
{getArsPaymentMethodBtns()}
|
||||
|
||||
@@ -132,7 +132,7 @@ export const FaceAuthPage = () => {
|
||||
const onSendRequest = (selectedEmail?: string) => {
|
||||
if(selectedEmail){
|
||||
const params: ExtensionFaceAuthExcelDownlaodPrams = {
|
||||
mid: "faceauth0m",
|
||||
mid: mid,
|
||||
email: selectedEmail,
|
||||
fromDate: fromDate,
|
||||
toDate: toDate
|
||||
|
||||
@@ -280,11 +280,12 @@ export const AllTransactionListPage = () => {
|
||||
<div className="detail-item">
|
||||
<span className="detail-label">{t('transaction.transactionCount')}</span>
|
||||
<span className="detail-value">
|
||||
{ t('transaction.total') + ' '}
|
||||
<NumericFormat
|
||||
value={ totalCount }
|
||||
allowNegative={ true }
|
||||
thousandSeparator
|
||||
displayType="text"
|
||||
prefix={t('transaction.total') + ' '}
|
||||
suffix={' ' + t('home.count')}
|
||||
></NumericFormat>
|
||||
</span>
|
||||
|
||||
@@ -221,11 +221,11 @@ export const CashReceiptListPage = () => {
|
||||
{t('home.money', { value: new Intl.NumberFormat('en-US').format(approvalAmount || 0) })}
|
||||
</strong>
|
||||
<span className="count">
|
||||
(
|
||||
<NumericFormat
|
||||
value={ approvalCount }
|
||||
thousandSeparator
|
||||
displayType="text"
|
||||
prefix='('
|
||||
suffix='건)'
|
||||
></NumericFormat>
|
||||
</span>
|
||||
@@ -236,11 +236,12 @@ export const CashReceiptListPage = () => {
|
||||
{t('home.money', { value: new Intl.NumberFormat('en-US').format(cancelAmount || 0) })}
|
||||
</strong>
|
||||
<span className="count">
|
||||
(
|
||||
<NumericFormat
|
||||
value={ cancelCount }
|
||||
allowNegative={ true }
|
||||
thousandSeparator
|
||||
displayType="text"
|
||||
prefix='('
|
||||
suffix='건)'
|
||||
></NumericFormat>
|
||||
</span>
|
||||
|
||||
Reference in New Issue
Block a user