fix: 입고관리 필터 타입 오류 수정
- filterConfig type: 'select' → 'single'로 변경 - FilterFieldConfig는 'single' | 'multi'만 지원
This commit is contained in:
@@ -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',
|
||||
},
|
||||
];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user