feat:공통코드/카테고리 벌크 글로벌 복사, 동기화 환경설정 공통화

- 공통코드/카테고리 테넌트→글로벌 체크박스 벌크 복사 기능 추가
- 이미 대상에 존재하는 항목 체크박스 disabled 처리 (양방향)
- 공통코드 토글 크기 카테고리와 동일하게 축소
- 동기화 환경설정 모달을 공통 partial로 분리
- 동기화 리스트에서 불필요한 타입 컬럼 제거

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
2026-01-30 13:16:44 +09:00
parent 0ea373e8e3
commit b6a3c4b506
11 changed files with 531 additions and 231 deletions

View File

@@ -82,6 +82,8 @@ public function index(Request $request): View|Response
$tenantCodes = $tenantCategoriesRaw->pluck('code')->toArray();
}
$globalCodes = $globalCategoriesRaw->pluck('code')->toArray();
return view('categories.index', [
'codeGroups' => $codeGroups,
'codeGroupLabels' => $codeGroupLabels,
@@ -89,6 +91,7 @@ public function index(Request $request): View|Response
'globalCategories' => $globalCategories,
'tenantCategories' => $tenantCategories,
'tenantCodes' => $tenantCodes,
'globalCodes' => $globalCodes,
'tenant' => $tenant,
'isHQ' => $isHQ,
]);