🐛 Fix: Project.name → project_name 속성명 수정 및 보고서 시스템 안정화

- backend/routers/reports.py: project.name을 project.project_name으로 수정 (3곳)
- 일일보고서 엑셀 내보내기 오류 해결
- 배포 가이드 업데이트 (DEPLOYMENT_GUIDE_20251028.md)
- 프로젝트 속성명 불일치로 인한 500 에러 해결

Fixes: 'Project' object has no attribute 'name' 오류
This commit is contained in:
Hyungi Ahn
2025-10-28 16:36:56 +09:00
parent 5aad973028
commit 58156da987
31 changed files with 1380 additions and 16 deletions

View File

@@ -324,3 +324,13 @@ class ProjectDailyWork(ProjectDailyWorkBase):
class Config:
from_attributes = True
# 일일보고서 관련 스키마
class DailyReportRequest(BaseModel):
project_id: int
class DailyReportStats(BaseModel):
total_count: int = 0
management_count: int = 0 # 관리처리 현황 (진행 중)
completed_count: int = 0
delayed_count: int = 0