From 928d270038096034ff9bd6d50a5817a99a2820f7 Mon Sep 17 00:00:00 2001 From: basssy Date: Fri, 10 Jan 2025 09:40:00 +0900 Subject: [PATCH] =?UTF-8?q?=EA=B2=AC=EC=A0=81=EC=84=9C=20=EC=83=81?= =?UTF-8?q?=EC=84=B8=ED=99=94=EB=A9=B4=20=EB=AC=BC=EA=B1=B4=EC=97=90?= =?UTF-8?q?=EC=84=9C=202=EC=B0=A8=ED=8C=90=EB=A7=A4=EC=A0=90=20=EC=95=88?= =?UTF-8?q?=EA=B3=A8=EB=9E=90=EC=9D=84=20=EA=B2=BD=EC=9A=B0=20=EB=94=94?= =?UTF-8?q?=ED=8F=B4=ED=8A=B8=20=EB=AC=B8=EA=B5=AC=20=EC=85=8B=ED=8C=85=20?= =?UTF-8?q?=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/estimate/Estimate.jsx | 6 +++++- src/locales/ja.json | 1 + src/locales/ko.json | 1 + 3 files changed, 7 insertions(+), 1 deletion(-) diff --git a/src/components/estimate/Estimate.jsx b/src/components/estimate/Estimate.jsx index 4241f916..990f4007 100644 --- a/src/components/estimate/Estimate.jsx +++ b/src/components/estimate/Estimate.jsx @@ -993,7 +993,11 @@ export default function Estimate({}) { {/* 2차 판매점명 */} {getMessage('estimate.detail.otherSaleStoreId')} - {estimateContextState?.agencySaleStoreName} + + {session?.storeLvl === '1' && estimateContextState?.saleStoreLevel === '1' + ? getMessage('estimate.detail.noOtherSaleStoreId') + : estimateContextState?.agencySaleStoreName} + {/* 담당자 */} {getMessage('estimate.detail.receiveUser')} * diff --git a/src/locales/ja.json b/src/locales/ja.json index 6cd6dee5..b589de1d 100644 --- a/src/locales/ja.json +++ b/src/locales/ja.json @@ -844,6 +844,7 @@ "estimate.detail.saleStoreId": "一次販売店名", "estimate.detail.estimateDate": "見積日", "estimate.detail.otherSaleStoreId": "二次販売店名", + "estimate.detail.noOtherSaleStoreId": "二次点なし", "estimate.detail.receiveUser": "担当者 ", "estimate.detail.objectName": "案件名", "estimate.detail.objectRemarks": "メモ", diff --git a/src/locales/ko.json b/src/locales/ko.json index 707ffd0a..b85beaa0 100644 --- a/src/locales/ko.json +++ b/src/locales/ko.json @@ -854,6 +854,7 @@ "estimate.detail.saleStoreId": "1차 판매점명", "estimate.detail.estimateDate": "견적일", "estimate.detail.otherSaleStoreId": "2차 판매점명", + "estimate.detail.noOtherSaleStoreId": "2차점 없음", "estimate.detail.receiveUser": "담당자", "estimate.detail.objectName": "안건명", "estimate.detail.objectRemarks": "메모",