diff --git a/src/app/api/stockIssue/actions.ts b/src/app/api/stockIssue/actions.ts index e210d63..3e2e9bd 100644 --- a/src/app/api/stockIssue/actions.ts +++ b/src/app/api/stockIssue/actions.ts @@ -16,15 +16,16 @@ export interface StockIssueResult { storeLocation: string | null; requiredQty: number | null; actualPickQty: number | null; - missQty: number; - badItemQty: number; + missQty: number; + badItemQty: number; + bookQty: number; + issueQty: number; issueRemark: string | null; pickerName: string | null; handleStatus: string; handleDate: string | null; handledBy: number | null; } - export interface ExpiryItemResult { id: number; itemId: number; diff --git a/src/components/ProductionProcess/ProductionProcessJobOrderDetail.tsx b/src/components/ProductionProcess/ProductionProcessJobOrderDetail.tsx index 9ed33f6..99d485a 100644 --- a/src/components/ProductionProcess/ProductionProcessJobOrderDetail.tsx +++ b/src/components/ProductionProcess/ProductionProcessJobOrderDetail.tsx @@ -484,7 +484,7 @@ const handleRelease = useCallback(async ( jobOrderId: number) => { }, { field: "reqQty", - headerName: t("Req. Qty"), + headerName: t("Bom Req. Qty"), flex: 0.7, align: "right", headerAlign: "right", diff --git a/src/i18n/zh/inventory.json b/src/i18n/zh/inventory.json index 831d0e0..d2e9663 100644 --- a/src/i18n/zh/inventory.json +++ b/src/i18n/zh/inventory.json @@ -33,6 +33,11 @@ "Start Time": "開始時間", "Difference": "差異", "stockTaking": "盤點中", + "rejected": "已拒絕", + "miss": "缺貨", + "bad": "不良", + "expiry": "過期", + "Bom Req. Qty": "需求數(BOM單位)", "selected stock take qty": "已選擇盤點數量", "book qty": "帳面庫存", "start time": "開始時間", diff --git a/src/i18n/zh/jo.json b/src/i18n/zh/jo.json index a66718c..21d94b0 100644 --- a/src/i18n/zh/jo.json +++ b/src/i18n/zh/jo.json @@ -203,6 +203,7 @@ "No Group": "沒有組", "No created items": "沒有創建物料", "Order Quantity": "需求數", + "Bom Req. Qty": "需求數(BOM單位)", "Selected": "已選擇", "Are you sure you want to delete this procoess?": "您確定要刪除此工序嗎?", "Please select item": "請選擇物料",