feat(daily-logs, pm): 스크럼 UI/UX 개선

Daily Logs 페이지:
- 미완료 항목 상태 변경 시 카드 유지 (done만 제거)
- 카드 정렬을 날짜 오래된 순으로 변경
- 요약 내용 nl2br 적용 및 접힘 시 2줄 제한
- 아코디언 항목 담당자별 그룹핑으로 통합

Project Management 페이지:
- 오늘의 활동을 칸반(3열) → 담당자 카드 스타일로 변경
- 완료 항목도 함께 표시 (취소선, 초록 배지)
- 미완료/완료 건수 헤더에 표시
This commit is contained in:
2025-12-04 22:25:50 +09:00
parent 6b87dc63f9
commit 1930c2ef9f
7 changed files with 1038 additions and 308 deletions

View File

@@ -24,6 +24,7 @@ public function index(): View
$projects = $this->projectService->getActiveProjects();
$stats = $this->dailyLogService->getStats($tenantId);
$weeklyTimeline = $this->dailyLogService->getWeeklyTimeline($tenantId);
$pendingEntries = $this->dailyLogService->getPendingEntries($tenantId);
$assigneeTypes = AdminPmDailyLogEntry::getAssigneeTypes();
$entryStatuses = AdminPmDailyLogEntry::getStatuses();
$assignees = $this->dailyLogService->getAssigneeList($tenantId);
@@ -32,6 +33,7 @@ public function index(): View
'projects',
'stats',
'weeklyTimeline',
'pendingEntries',
'assigneeTypes',
'entryStatuses',
'assignees'