fix: [sales] '유치자' → '유치 파트너'로 공식 용어 통일

- 상품관리, 파트너관리, 가망고객, 승인관리 등 9개 파일 일괄 수정
This commit is contained in:
김보곤
2026-03-16 17:03:14 +09:00
parent 2966d8576d
commit 2740af2f3c
9 changed files with 10 additions and 10 deletions

View File

@@ -248,7 +248,7 @@ class="inline-flex items-center gap-1 px-2.5 py-1 text-xs font-medium text-emera
</span>
</div>
<div class="flex justify-between">
<span class="text-gray-500">유치 수당</span>
<span class="text-gray-500">유치 파트너 수당</span>
<span class="font-medium {{ $comm->manager_commission > 0 ? 'text-emerald-700' : 'text-gray-400' }}">
{{ $comm->manager_commission > 0 ? number_format($comm->manager_commission) . '원' : '-' }}
@if($comm->manager_rate > 0)

View File

@@ -62,7 +62,7 @@ class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none foc
<th class="px-4 py-2 text-left text-xs font-medium text-gray-500 uppercase">신청자</th>
<th class="px-4 py-2 text-left text-xs font-medium text-gray-500 uppercase">역할</th>
<th class="px-4 py-2 text-left text-xs font-medium text-gray-500 uppercase">유형</th>
<th class="px-4 py-2 text-left text-xs font-medium text-gray-500 uppercase">유치</th>
<th class="px-4 py-2 text-left text-xs font-medium text-gray-500 uppercase">유치 파트너</th>
<th class="px-4 py-2 text-center text-xs font-medium text-gray-500 uppercase">처리</th>
</tr>
</thead>
@@ -169,7 +169,7 @@ class="px-2 py-1 bg-gray-400 hover:bg-gray-500 text-white text-xs font-medium ro
<th class="px-4 py-2 text-left text-xs font-medium text-gray-500 uppercase">파트너</th>
<th class="px-4 py-2 text-left text-xs font-medium text-gray-500 uppercase">역할</th>
<th class="px-4 py-2 text-left text-xs font-medium text-gray-500 uppercase">유형</th>
<th class="px-4 py-2 text-left text-xs font-medium text-gray-500 uppercase">유치</th>
<th class="px-4 py-2 text-left text-xs font-medium text-gray-500 uppercase">유치 파트너</th>
<th class="px-4 py-2 text-left text-xs font-medium text-gray-500 uppercase">승인일</th>
<th class="px-4 py-2 text-center text-xs font-medium text-gray-500 uppercase">상세</th>
</tr>

View File

@@ -182,7 +182,7 @@ class="w-4 h-4 text-blue-600 border-gray-300 rounded focus:ring-blue-500">
@if($partner->parent)
<div>
<label class="block text-sm font-medium text-gray-700 mb-2">추천인(유치)</label>
<label class="block text-sm font-medium text-gray-700 mb-2">추천인(유치 파트너)</label>
<div class="px-4 py-2 bg-gray-50 border border-gray-200 rounded-lg text-gray-700">
{{ $partner->parent->name }} ({{ $partner->parent->email }})
</div>

View File

@@ -108,7 +108,7 @@ class="w-full px-3 py-2 border border-gray-300 rounded-lg focus:outline-none foc
<th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">역할</th>
<th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">유형</th>
<th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">연락처</th>
<th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">추천인(유치)</th>
<th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">추천인(유치 파트너)</th>
<th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">상태</th>
<th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">등록일</th>
<th class="px-6 py-3 text-right text-xs font-medium text-gray-500 uppercase tracking-wider">관리</th>

View File

@@ -144,7 +144,7 @@ class="w-4 h-4 text-blue-600 border-gray-300 rounded focus:ring-blue-500">
<!-- 추천인 정보 -->
@if($partner->parent)
<div class="bg-gray-50 rounded-lg p-4 mb-4">
<h3 class="text-sm font-semibold text-gray-800 mb-2">추천인(유치)</h3>
<h3 class="text-sm font-semibold text-gray-800 mb-2">추천인(유치 파트너)</h3>
<div class="px-3 py-2 bg-white border border-gray-200 rounded-lg text-sm text-gray-700">
{{ $partner->parent->name }} ({{ $partner->parent->email }})
</div>

View File

@@ -107,7 +107,7 @@ class="w-full px-3 py-2 border border-gray-300 rounded-lg text-sm focus:outline-
<dd class="font-medium text-gray-900">{{ $partner->phone ?? '-' }}</dd>
</div>
<div class="flex justify-between">
<dt class="text-gray-500">추천인(유치)</dt>
<dt class="text-gray-500">추천인(유치 파트너)</dt>
<dd class="font-medium text-gray-900">
@if($partner->parent)
{{ $partner->parent->name }}

View File

@@ -116,7 +116,7 @@ class="px-4 py-2 bg-red-600 text-white rounded-lg hover:bg-red-700 transition te
<dd class="font-medium text-gray-900">레벨 {{ $level }}</dd>
</div>
<div class="flex justify-between">
<dt class="text-gray-500">추천인(유치)</dt>
<dt class="text-gray-500">추천인(유치 파트너)</dt>
<dd class="font-medium text-gray-900">
@if($partner->parent)
<a href="{{ route('sales.managers.show', $partner->parent->id) }}" class="text-blue-600 hover:underline">

View File

@@ -179,7 +179,7 @@ class="w-full px-3 py-2 border border-gray-300 rounded-lg focus:ring-2 focus:rin
min="0" max="100" step="1">
</div>
<div>
<label class="block text-sm font-medium text-gray-700 mb-1">유치 수당 (%)</label>
<label class="block text-sm font-medium text-gray-700 mb-1">유치 파트너 수당 (%)</label>
<input type="number" x-model="productForm.manager_commission_rate"
class="w-full px-3 py-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-indigo-500 text-right"
min="0" max="100" step="1">

View File

@@ -47,7 +47,7 @@ class="p-1 text-gray-400 hover:text-indigo-600 transition-colors">
<span class="text-sm text-green-600">
<span class="font-medium">파트너</span> {{ number_format($product->partner_commission_rate, 0) }}%
<span class="text-gray-300 mx-1">|</span>
<span class="font-medium">유치</span> {{ number_format($product->manager_commission_rate, 0) }}%
<span class="font-medium">유치 파트너</span> {{ number_format($product->manager_commission_rate, 0) }}%
</span>
</div>
@if($product->min_development_fee > 0 || $product->min_subscription_fee > 0)