diff --git a/src/app/api/bagPrint/actions.ts b/src/app/api/bagPrint/actions.ts index 60794ec..c1ddd11 100644 --- a/src/app/api/bagPrint/actions.ts +++ b/src/app/api/bagPrint/actions.ts @@ -13,6 +13,12 @@ export interface JobOrderListItem { stockInLineId: number | null; itemId: number | null; lotNo: string | null; + /** 打袋機 DataFlex cumulative printed qty */ + bagPrintedQty?: number; + /** 標簽機 cumulative printed qty */ + labelPrintedQty?: number; + /** 激光機 cumulative printed qty */ + laserPrintedQty?: number; } export interface PrinterStatusRequest { diff --git a/src/app/api/laserPrint/actions.ts b/src/app/api/laserPrint/actions.ts index 8b54844..5d149e1 100644 --- a/src/app/api/laserPrint/actions.ts +++ b/src/app/api/laserPrint/actions.ts @@ -13,6 +13,9 @@ export interface JobOrderListItem { stockInLineId: number | null; itemId: number | null; lotNo: string | null; + bagPrintedQty?: number; + labelPrintedQty?: number; + laserPrintedQty?: number; } export interface LaserBag2Settings {