fix: [자재투입] DEV 강제입고 버튼 배정 미완료 그룹에서만 표시

This commit is contained in:
김보곤
2026-03-22 17:46:53 +09:00
parent 3204447981
commit a2f184c4cb

View File

@@ -937,8 +937,8 @@ export function MaterialInputModal({
</Table>
</div>
{/* [DEV] LOT 있는 그룹에서 강제입고 가능 */}
{group.lots[0]?.itemId && group.lots.some(l => l.stockLotId !== null) && (
{/* [DEV] 배정 미완료 그룹에서 강제입고 */}
{group.lots[0]?.itemId && group.lots.some(l => l.stockLotId !== null) && !isFulfilled && (
<div className="px-4 py-1.5 border-t">
<Button
size="sm"