diff --git a/resources/views/project-management/import.blade.php b/resources/views/project-management/import.blade.php index bcafc8e4..7e3f76ba 100644 --- a/resources/views/project-management/import.blade.php +++ b/resources/views/project-management/import.blade.php @@ -128,13 +128,24 @@ class="flex-1 px-4 py-2.5 text-sm font-medium text-white bg-indigo-600 rounded-l "description": "작업 설명", "status": "todo|in_progress|done", "priority": "low|medium|high", + "is_urgent": false, "due_date": "2025-01-15", + "assignee_id": null, "issues": [ { "title": "이슈 제목 (필수)", "description": "이슈 설명", "type": "bug|feature|improvement", - "status": "open|in_progress|resolved|closed" + "status": "open|in_progress|resolved|closed", + "start_date": "2025-01-01", + "due_date": "2025-01-15", + "estimated_hours": 8, + "is_urgent": false, + "department_id": null, + "team": "개발팀", + "assignee_id": null, + "assignee_name": "홍길동", + "client": "고객사명" } ] } @@ -147,6 +158,7 @@ class="flex-1 px-4 py-2.5 text-sm font-medium text-white bg-indigo-600 rounded-l { "title": "추가할 작업", "priority": "high", + "is_urgent": true, "issues": [...] } ] @@ -190,6 +202,34 @@ class="flex-1 px-4 py-2.5 text-sm font-medium text-white bg-indigo-600 rounded-l
improvement - 개선open - 대기중in_progress - 처리중resolved - 해결됨closed - 종료department_id - 부서 ID (DB 연동)team - 팀명 (문자열 직접 입력)assignee_id - 담당자 ID (DB 연동)assignee_name - 담당자명 (문자열)client - 고객사명is_urgent - 긴급 여부 (true/false)estimated_hours - 예상 소요시간 (시간)start_date - 시작일 (YYYY-MM-DD)due_date - 마감일 (YYYY-MM-DD)