refactor:영업파트너 역할 2개로 단순화 (recruiter 제거)

- 역할: sales(영업파트너), manager(상담매니저) 2개만 유지
- recruiter(유치담당) 역할 완전 제거
- 역할 레이블 변경: 영업→영업파트너, 매니저→상담매니저
- 통계, 필터, 역할관리 UI 모두 업데이트

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
김보곤
2026-02-02 16:43:02 +09:00
parent 32c00d8522
commit ced9110f3b
8 changed files with 35 additions and 64 deletions

View File

@@ -20,15 +20,11 @@ public function run(): void
$roles = [
[
'name' => 'sales',
'description' => '영업 - 가망고객 발굴, 상담, 계약 체결',
'description' => '영업파트너 - 고객 발굴, 계약 체결',
],
[
'name' => 'manager',
'description' => '매니저 - 하위 파트너 관리, 실적 취합, 승인 처리',
],
[
'name' => 'recruiter',
'description' => '유치담당 - 새로운 영업파트너 유치 활동',
'description' => '상담매니저 - 고객 상담, 인터뷰 정리',
],
];
@@ -45,6 +41,6 @@ public function run(): void
);
}
$this->command->info('영업파트너 역할이 생성되었습니다: sales, manager, recruiter');
$this->command->info('영업파트너 역할이 생성되었습니다: sales, manager');
}
}