diff --git a/backend/database/__pycache__/schemas.cpython-311.pyc b/backend/database/__pycache__/schemas.cpython-311.pyc index c6585bd..c397091 100644 Binary files a/backend/database/__pycache__/schemas.cpython-311.pyc and b/backend/database/__pycache__/schemas.cpython-311.pyc differ diff --git a/backend/database/schemas.py b/backend/database/schemas.py index 8932562..1fb6442 100644 --- a/backend/database/schemas.py +++ b/backend/database/schemas.py @@ -161,7 +161,6 @@ class IssueReviewRequest(BaseModel): class IssueStatusUpdateRequest(BaseModel): """부적합 상태 변경 요청""" review_status: ReviewStatus - notes: Optional[str] = None completion_photo: Optional[str] = None # 완료 사진 (Base64) solution: Optional[str] = None # 해결방안 responsible_department: Optional[DepartmentType] = None # 담당부서 diff --git a/backend/routers/__pycache__/inbox.cpython-311.pyc b/backend/routers/__pycache__/inbox.cpython-311.pyc index 993a573..6a2583c 100644 Binary files a/backend/routers/__pycache__/inbox.cpython-311.pyc and b/backend/routers/__pycache__/inbox.cpython-311.pyc differ diff --git a/backend/routers/inbox.py b/backend/routers/inbox.py index 85f22e6..b181471 100644 --- a/backend/routers/inbox.py +++ b/backend/routers/inbox.py @@ -285,13 +285,6 @@ async def update_issue_status( if status_request.responsible_person: issue.responsible_person = status_request.responsible_person - # 노트가 있으면 detail_notes에 추가 - if status_request.notes: - current_notes = issue.detail_notes or "" - timestamp = datetime.now().strftime("%Y-%m-%d %H:%M") - new_note = f"[{timestamp}] {current_user.username}: {status_request.notes}" - issue.detail_notes = f"{current_notes}\n{new_note}".strip() - db.commit() db.refresh(issue) diff --git a/frontend/issues-inbox.html b/frontend/issues-inbox.html index f80900e..423854e 100644 --- a/frontend/issues-inbox.html +++ b/frontend/issues-inbox.html @@ -421,12 +421,6 @@ -