fix: 입고관리 필터 타입 오류 수정

- filterConfig type: 'select' → 'single'로 변경
- FilterFieldConfig는 'single' | 'multi'만 지원
This commit is contained in:
2026-01-28 23:15:31 +09:00
parent 1f640622e0
commit d2a39de576

View File

@@ -126,14 +126,12 @@ export function ReceivingList() {
{
key: 'status',
label: '상태',
type: 'select',
type: 'single',
options: [
{ value: 'all', label: '전체' },
{ value: 'receiving_pending', label: '입고대기' },
{ value: 'completed', label: '입고완료' },
{ value: 'inspection_completed', label: '검사완료' },
],
defaultValue: 'all',
},
];