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": "메모",
|