feat: POP 기능 병합 (pop-screen → main, PC 무변경 46건)

- POP 생산: 재고 관리, 재작업 이력, BOM 자재투입 기능 추가
- POP 설정: 설정 시스템 + 관리 페이지 (/pop/admin)
- POP 화면: 버그 수정 + 설정 연동 + 다음공정 활성화 수정
- PC 코드 무변경 (보류 6건: app.ts, 출고/입고/작업지시 컨트롤러, 레이아웃)
This commit is contained in:
SeongHyun Kim
2026-04-05 17:45:33 +09:00
parent 9b7b88ff7c
commit a04ddd15ec
16 changed files with 4355 additions and 952 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -18,6 +18,10 @@ import {
updateTargetWarehouse,
inventoryInbound,
quickInventoryInbound,
getReworkHistory,
getBomMaterials,
saveMaterialInput,
getMaterialInputs,
} from "../controllers/popProductionController";
const router = Router();
@@ -41,5 +45,9 @@ router.get("/is-last-process/:processId", isLastProcess);
router.post("/update-target-warehouse", updateTargetWarehouse);
router.post("/inventory-inbound", inventoryInbound);
router.post("/quick-inventory-inbound", quickInventoryInbound);
router.get("/rework-history/:woId", getReworkHistory);
router.get("/bom-materials/:processId", getBomMaterials);
router.post("/material-input", saveMaterialInput);
router.get("/material-inputs/:processId", getMaterialInputs);
export default router;