| | |
| | | export interface SaveWoBatchInput { |
| | | Wo: BIZ_MES_WO; |
| | | WoBatch: BIZ_MES_WO_BATCH; |
| | | IfToCust: boolean; |
| | | } |
| | | |
| | | export type OperPageListGetResultModel = BasicFetchResult<OperListItem>; |
| | |
| | | rotId: string; |
| | | rotCode: string; |
| | | prodCode: string; |
| | | custCode: string; |
| | | } |
| | | |
| | | export interface BizMesWoInput { |
| | |
| | | |
| | | export interface ProdRotInput extends RouteInput { |
| | | prodCode: string; |
| | | custCode: string; |
| | | isDefault: boolean; |
| | | } |
| | | |
| | | export interface WoRotInput extends RouteInput { |
| | | wo: 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; |
| | | } |