feat: 품목 필드 관리 및 UI 개선

- ItemFieldController API 수정
- ItemFieldSeedingService 로직 개선
- Flow Tester 상세 화면 개선
- 레이아웃 및 프로젝트 상세 화면 수정
- 테이블 정렬 JS 추가
This commit is contained in:
2025-12-12 08:51:54 +09:00
parent 82dbb3cc71
commit 767db6f513
6 changed files with 576 additions and 21 deletions

View File

@@ -143,7 +143,7 @@ public function resetAll(Request $request): JsonResponse
}
/**
* 커스텀 필드 목록 (HTMX partial)
* 필드 목록 (HTMX partial) - 시스템 + 커스텀
*/
public function customFields(Request $request): View
{
@@ -157,7 +157,8 @@ public function customFields(Request $request): View
]);
}
$fields = $this->service->getCustomFields($tenantId, $request->all());
// getFields() 메서드 사용 (시스템 + 커스텀 모두 조회, 시스템 필드 우선 정렬)
$fields = $this->service->getFields($tenantId, $request->all());
return view('item-fields.partials.custom-fields', [
'fields' => $fields,