feat:매니저 대시보드에 매니저 참여 건 섹션 추가

- 내 활동 탭에 "매니저로 참여 중인 건" 섹션 추가
- 영업 시나리오: 읽기 전용 모드(참조용) 지원
- 매니저 시나리오: 체크 가능
- 시나리오 모달에 readonly 파라미터 처리
- 읽기 전용 시 체크박스 비활성화 및 "참조용" 배지 표시

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
김보곤
2026-02-02 15:03:00 +09:00
parent 7e47f086e9
commit d472d10439
6 changed files with 182 additions and 5 deletions

View File

@@ -179,6 +179,7 @@ public function prospectSalesScenario(int $prospectId, Request $request): View|R
$steps = config('sales_scenario.sales_steps');
$currentStep = (int) $request->input('step', 1);
$icons = config('sales_scenario.icons');
$readonly = $request->boolean('readonly', false);
// 가망고객 영업 관리 정보 조회 또는 생성
$management = SalesTenantManagement::findOrCreateByProspect($prospectId);
@@ -201,6 +202,7 @@ public function prospectSalesScenario(int $prospectId, Request $request): View|R
'icons' => $icons,
'management' => $management,
'isProspect' => true,
'readonly' => $readonly,
]);
}
@@ -213,6 +215,7 @@ public function prospectSalesScenario(int $prospectId, Request $request): View|R
'icons' => $icons,
'management' => $management,
'isProspect' => true,
'readonly' => $readonly,
]);
}