상수 수정

This commit is contained in:
focp212@naver.com
2025-11-17 12:42:08 +09:00
parent d44bc427fe
commit a93cd44fd4
2 changed files with 16 additions and 5 deletions

View File

@@ -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: '한국어',

View File

@@ -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>