diff --git a/resources/views/sales/price-simulator/index.blade.php b/resources/views/sales/price-simulator/index.blade.php index 8d14b626..0fa320f6 100644 --- a/resources/views/sales/price-simulator/index.blade.php +++ b/resources/views/sales/price-simulator/index.blade.php @@ -255,9 +255,13 @@ class="inline-flex items-center gap-2 px-4 py-2 text-sm font-medium text-gray-70 단체 수당 30% +
+ 유치 파트너 수당 + 3% +
총 수당률 - 30% + 33%
@@ -452,6 +456,8 @@ class="inline-flex items-center gap-2 px-4 py-2 text-sm font-medium text-gray-70
단체 수당 (30%) 300만원 + 유치 파트너 수당 (3%) + 30만원

5개사 동시 가입 시 총 단체 수당: 1,500만원

@@ -688,7 +694,7 @@ class="inline-flex items-center gap-2 px-4 py-2 text-sm font-medium text-gray-70 x-on:click="signupType = 'group'">
👥
단체 가입
-
단체 30%
+
단체 30% + 유치 파트너 3%
@@ -1112,15 +1118,15 @@ class="w-full py-2 text-xs text-gray-500 bg-gray-50 hover:bg-gray-100 rounded-lg - {{-- 유치 파트너 수당 (개인 가입 시 5%) --}} -
+ {{-- 유치 파트너 수당 (개인 5% / 단체 3%) --}} +
유치 파트너 수당
- (5%) +
{{-- 매니저 수당 (개인 가입 시 첫 달 구독료) --}} @@ -1476,10 +1482,12 @@ function buildRequiredSelected(catId) { return Math.floor(this.commissionBaseAmount() * this.partnerRate() / 100); }, + referralPartnerRate() { + return this.signupType === 'individual' ? 5 : 3; + }, + referralPartnerCommission() { - // 개인 가입: 유치 파트너 5%, 단체 가입: 0% (비공식 3%는 표시 안 함) - if (this.signupType !== 'individual') return 0; - return Math.floor(this.commissionBaseAmount() * 5 / 100); + return Math.floor(this.commissionBaseAmount() * this.referralPartnerRate() / 100); }, managerCommission() {