상수 수정
This commit is contained in:
@@ -1,6 +1,12 @@
|
||||
import { PATHS } from "@/shared/constants/paths";
|
||||
import { SortTypeKeys } from "./types";
|
||||
|
||||
export const BUSINESS_NUMBER = '220-81-15770';
|
||||
export const ESCROW_REGISTER_NO = '02-006-00073';
|
||||
export const MAIN_ADDRESS = '서울특별시 영등포구 은행로17 (나이스그룹 1사옥) 나이스정보통신(주)';
|
||||
export const POSTAL_CODE = '07237';
|
||||
export const HOME_PAGE_URL = 'https://www.nicepay.co.kr';
|
||||
|
||||
export const APP_LANGUAGE = {
|
||||
// DEVICE: '기기 설정 언어',
|
||||
ko: '한국어',
|
||||
|
||||
@@ -1,12 +1,17 @@
|
||||
import moment from 'moment';
|
||||
import { IMAGE_ROOT } from '@/shared/constants/common';
|
||||
import { motion } from 'framer-motion';
|
||||
import { snackBar } from '@/shared/lib';
|
||||
import { toPng } from 'html-to-image';
|
||||
import { useTranslation } from 'react-i18next';
|
||||
import { useEffect, useState } from 'react';
|
||||
import { NumericFormat } from 'react-number-format';
|
||||
import { FilterMotionDuration, FilterMotionVariants } from '../model/constant';
|
||||
import {
|
||||
BUSINESS_NUMBER,
|
||||
ESCROW_REGISTER_NO,
|
||||
HOME_PAGE_URL,
|
||||
MAIN_ADDRESS,
|
||||
POSTAL_CODE
|
||||
} from '../model/constant';
|
||||
import { RecipientInfo, SupplierInfo, TransactionDetails } from '@/entities/vat-return/model/types';
|
||||
import '@/shared/ui/assets/css/style-tax-invoice.css';
|
||||
import { useAppBridge } from '@/hooks/useAppBridge';
|
||||
@@ -713,11 +718,11 @@ export const TaxInvoiceSample = ({
|
||||
/>
|
||||
</td>
|
||||
<td className="tax-invoice-footer">
|
||||
사업자 등록번호 : 220-81-15770 | 결제대금예치업 등록번호 : 02-006-00073
|
||||
사업자 등록번호 : { BUSINESS_NUMBER } | 결제대금예치업 등록번호 : { ESCROW_REGISTER_NO }
|
||||
<br />
|
||||
주소 : 서울특별시 영등포구 은행로17 (나이스그룹 1사옥) 나이스정보통신(주)
|
||||
주소 : { MAIN_ADDRESS }
|
||||
<br />
|
||||
우편번호 : 07237 | https://www.nicepay.co.kr
|
||||
우편번호 : { POSTAL_CODE } | { HOME_PAGE_URL }
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
|
||||
Reference in New Issue
Block a user