feat:문서양식관리 기능 추가 및 권한 토글 개선
- 문서양식관리 CRUD 기능 구현 (생산관리 > 문서양식관리) - 결재라인, 섹션, 컬럼 동적 관리 (Vanilla JS) - 섹션별 이미지 업로드 기능 - SortableJS 드래그앤드롭 순서 변경 - 문서 미리보기 모달 - document_type 글로벌 코드 추가 (품질, 생산, 영업, 구매, 일반, 기타) - 역할/부서 권한 토글 시 페이지 새로고침 방지 (hx-swap="none") Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
@@ -299,6 +299,14 @@ protected function seedMainMenus(): void
|
||||
'hidden' => true,
|
||||
'options' => ['route_name' => 'categories.index', 'section' => 'main', 'meta' => ['status' => 'preparing']],
|
||||
]);
|
||||
$this->createMenu([
|
||||
'parent_id' => $productionGroup->id,
|
||||
'name' => '문서양식관리',
|
||||
'url' => '/document-templates',
|
||||
'icon' => 'document-duplicate',
|
||||
'sort_order' => $prodSubOrder++,
|
||||
'options' => ['route_name' => 'document-templates.index', 'section' => 'main'],
|
||||
]);
|
||||
|
||||
// ========================================
|
||||
// 콘텐츠 관리 그룹
|
||||
|
||||
Reference in New Issue
Block a user