From fdf895e60e64ab855985855dabe5019d6c079a0b Mon Sep 17 00:00:00 2001 From: hskwon Date: Tue, 2 Dec 2025 20:31:03 +0900 Subject: [PATCH] =?UTF-8?q?=ED=94=84=EB=A1=9C=EC=A0=9D=ED=8A=B8=20?= =?UTF-8?q?=EC=9E=84=ED=8F=AC=ED=8A=B8=20JSON=20=EA=B0=80=EC=9D=B4?= =?UTF-8?q?=EB=93=9C=20=EC=97=85=EB=8D=B0=EC=9D=B4=ED=8A=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Task: is_urgent, assignee_id 필드 추가 - Issue: start_date, due_date, estimated_hours, is_urgent 필드 추가 - Issue: department_id, team, assignee_id, assignee_name, client 필드 추가 - 이슈 상태, 담당자/팀 하이브리드, 기타 필드 설명 추가 --- .../views/project-management/import.blade.php | 42 ++++++++++++++++++- 1 file changed, 41 insertions(+), 1 deletion(-) 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 - 개선
  • +
    +

    이슈 상태

    + +
    +
    +

    담당자/팀 (하이브리드)

    + +
    +
    +

    기타 필드

    + +