Ben Lin
2025-03-11 8e977a7ec92bc1845079eda2473e9c3fc4691c8d
src/api/tigerapi/model/mesModel.ts
@@ -289,6 +289,7 @@
export interface SaveWoBatchInput {
  Wo: BIZ_MES_WO;
  WoBatch: BIZ_MES_WO_BATCH;
  IfToCust: boolean;
}
export type OperPageListGetResultModel = BasicFetchResult<OperListItem>;
@@ -310,6 +311,7 @@
  rotId: string;
  rotCode: string;
  prodCode: string;
  custCode: string;
}
export interface BizMesWoInput {
@@ -505,5 +507,63 @@
export interface ProdRotInput extends RouteInput {
  prodCode: string;
  custCode: string;
  isDefault: boolean;
}
export interface WoRotInput extends RouteInput {
  wo: string;
}
/**
 * @description: 工艺路线树形
 * @return {*}
 */
export interface MesRotTree {
  org: string;
  pid: string;
  tid: string;
  id: string;
  code: string;
  name: string;
  type: string;
  seq: string;
  isDefault: boolean;
  level: number;
  cust: string;
  children: MesRotTree[];
}
export interface PageRotTree {
  name: string;
  treeInfo: MesRotTree[];
}
export interface WoFlowCardPrintJson {
  ID: string;
  OrderNo: string;
  Status: string;
  ItemCode: string;
  ItemDesc: string;
  SapCode: string;
  Model: string;
  Qty: number;
  SoRemark: string;
  MoRemark: string;
  Customer: string;
  DemandCode: string;
  RouteStr: string;
  Items: PrintWoPickList[]
}
export interface PrintWoPickList {
  LineNo: number;
  SapCode: string;
  ItemCode: string;
  ItemDesc: string;
  PickQty: string;
  LineRemark: string;
  WhCode: string;
  WhCode07: string;
  Method: string;
}