diff --git a/src/config/reportConfig.ts b/src/config/reportConfig.ts index 63c4806..c336549 100644 --- a/src/config/reportConfig.ts +++ b/src/config/reportConfig.ts @@ -163,8 +163,8 @@ export const REPORTS: ReportDefinition[] = [ title: "庫存明細報告", apiEndpoint: `${NEXT_PUBLIC_API_URL}/report/print-stock-ledger`, fields: [ - { label: "庫存日期:由 Last In Date Start", name: "lastInDateStart", type: "date", required: false }, - { label: "庫存日期:至 Last In Date End", name: "lastInDateEnd", type: "date", required: false }, + { label: "開始日期:由 Start Date Start", name: "startDateStart", type: "date", required: false }, + { label: "結束日期:至 End Date End", name: "startDateEnd", type: "date", required: false }, { label: "物料編號 Item Code", name: "itemCode", type: "text", required: false}, ] }, @@ -172,8 +172,8 @@ export const REPORTS: ReportDefinition[] = [ title: "庫存盤點報告", apiEndpoint: `${NEXT_PUBLIC_API_URL}/report/print-stock-take-variance`, fields: [ - { label: "庫存日期:由 Last In Date Start", name: "lastInDateStart", type: "date", required: false }, - { label: "庫存日期:至 Last In Date End", name: "lastInDateEnd", type: "date", required: false }, + { label: "開始日期:由 Start Date Start", name: "startDateStart", type: "date", required: false }, + { label: "結束日期:至 End Date End", name: "startDateEnd", type: "date", required: false }, { label: "物料編號 Item Code", name: "itemCode", type: "text", required: false}, ] },