|
@@ -31,6 +31,15 @@ struct OperationMaterialKit {
|
|
|
@State selectOperations: OperationInfo[] = []
|
|
|
// 选中工序需求的物料
|
|
|
@State operationItems: OperationItem[] = []
|
|
|
+ // 出库料箱中物料数量(出入口料口使用)
|
|
|
+ @State materialNum: number = 0
|
|
|
+ // 出库料箱中物料信息(出入口料口使用)
|
|
|
+ @State scanMaterialList: MaterialInfo[] = []
|
|
|
+ // 物料全数组(本次扫描物料弹窗中展示)
|
|
|
+ @State materialArray: MaterialInfo[] = []
|
|
|
+ // 数量合并的物料数组(在拣选工作台展示)
|
|
|
+ @State materialMergeArray: MaterialInfo[] = []
|
|
|
+
|
|
|
// 当前的料箱编码
|
|
|
@Provide('currentVehicleCode') currentVehicleCode: string = ''
|
|
|
// 扫码添加的物料数组(齐套料箱)
|
|
@@ -208,6 +217,10 @@ struct OperationMaterialKit {
|
|
|
selectOperations: this.selectOperations,
|
|
|
operationItems: this.operationItems,
|
|
|
scanMaterialArray: this.scanMaterialArray,
|
|
|
+ materialNum: this.materialNum,
|
|
|
+ scanMaterialList: this.scanMaterialList,
|
|
|
+ materialArray: this.materialArray,
|
|
|
+ materialMergeArray: this.materialMergeArray,
|
|
|
})
|
|
|
} else {
|
|
|
OperationMaterialKitThreeStep({
|