feat: 생산/품질/자재/출고/주문 관리 페이지 구현

- 생산관리: 대시보드, 작업지시, 작업실적, 작업자화면
- 품질관리: 검사관리 (리스트/등록/상세)
- 자재관리: 입고관리, 재고현황
- 출고관리: 출하관리 (리스트/등록/상세/수정)
- 주문관리: 수주관리, 생산의뢰
- 기존 컴포넌트 개선: CardTransactionInquiry, VendorDetail, QuoteRegistration
- IntegratedListTemplateV2 개선
- 공통 컴포넌트 분석 문서 추가

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
byeongcheolryu
2025-12-23 21:13:07 +09:00
parent 2ebcea0255
commit f0e8e51d06
108 changed files with 21156 additions and 84 deletions

View File

@@ -0,0 +1,285 @@
'use client';
/**
* 공정상세 섹션 컴포넌트
*
* WorkCard 내부에서 토글 확장되는 공정 상세 정보
* - 자재 투입 필요 섹션
* - 공정 단계 (5단계)
* - 각 단계별 세부 항목
*/
import { useState } from 'react';
import { Package, CheckCircle2, Circle, AlertTriangle, MapPin, Ruler } from 'lucide-react';
import { Badge } from '@/components/ui/badge';
import { Button } from '@/components/ui/button';
import { Collapsible, CollapsibleContent, CollapsibleTrigger } from '@/components/ui/collapsible';
import { cn } from '@/lib/utils';
import type { ProcessStep, ProcessStepItem } from './types';
// Mock 공정 단계 데이터
const MOCK_PROCESS_STEPS: ProcessStep[] = [
{
id: 'step-1',
stepNo: 1,
name: '절곡판/코일 절단',
completed: 0,
total: 2,
items: [
{
id: 'item-1-1',
itemNo: '#1',
location: '1층 1호-A',
isPriority: true,
spec: 'W2500 × H3000',
material: '절곡판',
lot: 'LOT-절곡-2025-001',
},
{
id: 'item-1-2',
itemNo: '#2',
location: '1층 1호-B',
isPriority: false,
spec: 'W2000 × H2500',
material: '절곡판',
lot: 'LOT-절곡-2025-002',
},
],
},
{
id: 'step-2',
stepNo: 2,
name: 'V컷팅',
completed: 0,
total: 2,
items: [
{
id: 'item-2-1',
itemNo: '#1',
location: '1층 2호-A',
isPriority: false,
spec: 'V10 × L2500',
material: 'V컷팅재',
lot: 'LOT-V컷-2025-001',
},
],
},
{
id: 'step-3',
stepNo: 3,
name: '절곡',
completed: 0,
total: 3,
items: [
{
id: 'item-3-1',
itemNo: '#1',
location: '2층 1호',
isPriority: true,
spec: '90° × 2회',
material: '절곡판',
lot: 'LOT-절곡-2025-001',
},
],
},
{
id: 'step-4',
stepNo: 4,
name: '중간검사',
isInspection: true,
completed: 0,
total: 1,
items: [],
},
{
id: 'step-5',
stepNo: 5,
name: '포장',
completed: 0,
total: 1,
items: [],
},
];
interface ProcessDetailSectionProps {
isExpanded: boolean;
materialRequired: boolean;
onMaterialInput: () => void;
}
export function ProcessDetailSection({
isExpanded,
materialRequired,
onMaterialInput,
}: ProcessDetailSectionProps) {
const [steps] = useState<ProcessStep[]>(MOCK_PROCESS_STEPS);
const [expandedSteps, setExpandedSteps] = useState<Set<string>>(new Set());
const totalSteps = steps.length;
const completedSteps = steps.filter((s) => s.completed === s.total).length;
const toggleStep = (stepId: string) => {
setExpandedSteps((prev) => {
const next = new Set(prev);
if (next.has(stepId)) {
next.delete(stepId);
} else {
next.add(stepId);
}
return next;
});
};
if (!isExpanded) return null;
return (
<div className="mt-4 pt-4 border-t space-y-4">
{/* 자재 투입 필요 섹션 */}
{materialRequired && (
<div className="bg-orange-50 border border-orange-200 rounded-lg p-3">
<div className="flex items-center justify-between">
<div className="flex items-center gap-2">
<AlertTriangle className="h-4 w-4 text-orange-500" />
<span className="text-sm font-medium text-orange-800">
</span>
</div>
<Button
size="sm"
variant="outline"
onClick={onMaterialInput}
className="border-orange-300 text-orange-700 hover:bg-orange-100"
>
<Package className="mr-1 h-4 w-4" />
</Button>
</div>
</div>
)}
{/* 공정 단계 헤더 */}
<div className="flex items-center justify-between">
<h4 className="text-sm font-medium"> </h4>
<Badge variant="outline" className="text-xs">
{completedSteps}/{totalSteps}
</Badge>
</div>
{/* 공정 단계 목록 */}
<div className="space-y-2">
{steps.map((step) => (
<ProcessStepCard
key={step.id}
step={step}
isExpanded={expandedSteps.has(step.id)}
onToggle={() => toggleStep(step.id)}
/>
))}
</div>
</div>
);
}
// ===== 하위 컴포넌트 =====
interface ProcessStepCardProps {
step: ProcessStep;
isExpanded: boolean;
onToggle: () => void;
}
function ProcessStepCard({ step, isExpanded, onToggle }: ProcessStepCardProps) {
const isCompleted = step.completed === step.total;
const hasItems = step.items.length > 0;
return (
<Collapsible open={isExpanded} onOpenChange={onToggle}>
<CollapsibleTrigger asChild>
<div
className={cn(
'flex items-center justify-between p-3 rounded-lg border cursor-pointer transition-colors',
isCompleted
? 'bg-green-50 border-green-200'
: 'bg-gray-50 border-gray-200 hover:bg-gray-100'
)}
>
<div className="flex items-center gap-3">
{isCompleted ? (
<CheckCircle2 className="h-5 w-5 text-green-500" />
) : (
<Circle className="h-5 w-5 text-gray-400" />
)}
<div>
<div className="flex items-center gap-2">
<span className="text-sm font-medium">
{step.stepNo}. {step.name}
</span>
{step.isInspection && (
<Badge variant="secondary" className="text-xs">
</Badge>
)}
</div>
<span className="text-xs text-muted-foreground">
{step.completed}/{step.total}
</span>
</div>
</div>
{hasItems && (
<span className="text-xs text-muted-foreground">
{isExpanded ? '접기' : '펼치기'}
</span>
)}
</div>
</CollapsibleTrigger>
{hasItems && (
<CollapsibleContent>
<div className="ml-8 mt-2 space-y-2">
{step.items.map((item) => (
<ProcessStepItemCard key={item.id} item={item} />
))}
</div>
</CollapsibleContent>
)}
</Collapsible>
);
}
interface ProcessStepItemCardProps {
item: ProcessStepItem;
}
function ProcessStepItemCard({ item }: ProcessStepItemCardProps) {
return (
<div className="p-3 bg-white border rounded-lg text-sm">
<div className="flex items-center justify-between mb-2">
<div className="flex items-center gap-2">
<span className="font-medium">{item.itemNo}</span>
{item.isPriority && (
<Badge variant="destructive" className="text-xs">
</Badge>
)}
</div>
<Badge variant="outline" className="text-xs font-mono">
{item.lot}
</Badge>
</div>
<div className="grid grid-cols-2 gap-2 text-xs text-muted-foreground">
<div className="flex items-center gap-1">
<MapPin className="h-3 w-3" />
<span>{item.location}</span>
</div>
<div className="flex items-center gap-1">
<Ruler className="h-3 w-3" />
<span>{item.spec}</span>
</div>
<div className="col-span-2 flex items-center gap-1">
<Package className="h-3 w-3" />
<span>: {item.material}</span>
</div>
</div>
</div>
);
}