렉 구조등록 컴포넌트

This commit is contained in:
kjs
2025-12-08 15:15:44 +09:00
parent 09d2d7573d
commit e05af3c6f9
12 changed files with 1402 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
/**
* 렉 구조 컴포넌트 기본 설정
*/
import { RackStructureComponentConfig } from "./types";
export const defaultConfig: RackStructureComponentConfig = {
// 기본 제한
maxConditions: 10,
maxRows: 99,
maxLevels: 20,
// 기본 코드 패턴
codePattern: "{warehouseCode}-{floor}{zone}-{row:02d}-{level}",
namePattern: "{zone}구역-{row:02d}열-{level}단",
// UI 설정
showTemplates: true,
showPreview: true,
showStatistics: true,
readonly: false,
// 초기 조건 없음
initialConditions: [],
};