Browse Source

i18n

MergeProblem1
CANCERYS\kw093 2 weeks ago
parent
commit
d7e139dd2c
4 changed files with 11 additions and 4 deletions
  1. +4
    -3
      src/app/api/stockIssue/actions.ts
  2. +1
    -1
      src/components/ProductionProcess/ProductionProcessJobOrderDetail.tsx
  3. +5
    -0
      src/i18n/zh/inventory.json
  4. +1
    -0
      src/i18n/zh/jo.json

+ 4
- 3
src/app/api/stockIssue/actions.ts View File

@@ -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;


+ 1
- 1
src/components/ProductionProcess/ProductionProcessJobOrderDetail.tsx View File

@@ -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",


+ 5
- 0
src/i18n/zh/inventory.json View File

@@ -33,6 +33,11 @@
"Start Time": "開始時間",
"Difference": "差異",
"stockTaking": "盤點中",
"rejected": "已拒絕",
"miss": "缺貨",
"bad": "不良",
"expiry": "過期",
"Bom Req. Qty": "需求數(BOM單位)",
"selected stock take qty": "已選擇盤點數量",
"book qty": "帳面庫存",
"start time": "開始時間",


+ 1
- 0
src/i18n/zh/jo.json View File

@@ -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": "請選擇物料",


Loading…
Cancel
Save