|
@ -273,30 +273,43 @@ import { nextTick } from 'vue'; |
|
|
console.log(JSON.stringify(params)) |
|
|
console.log(JSON.stringify(params)) |
|
|
|
|
|
|
|
|
let list = [] |
|
|
let list = [] |
|
|
var planData = await planReceiptSubmit(params) |
|
|
try{ |
|
|
if (planData.data) { |
|
|
var planData = await planReceiptSubmit(params) |
|
|
|
|
|
console.log('planData',planData) |
|
|
planData.data.forEach(item => { |
|
|
if (planData.data) { |
|
|
list.push({ |
|
|
|
|
|
itemCode: item.itemCode, // 物品代码 |
|
|
planData.data.forEach(item => { |
|
|
itemName: item.itemName, // 物品名称 |
|
|
list.push({ |
|
|
packName: item.packName, // 包装名称 |
|
|
itemCode: item.itemCode, // 物品代码 |
|
|
packageCode: item.toPackingNumber, // 包装号 |
|
|
itemName: item.itemName, // 物品名称 |
|
|
batch: item.toBatch, //批次 |
|
|
packName: item.packName, // 包装名称 |
|
|
parentNumber: item.parentNumber, //父包装号 |
|
|
packageCode: item.toPackingNumber, // 包装号 |
|
|
itemType: item.itemType, //物料类型 |
|
|
batch: item.toBatch, //批次 |
|
|
asnNumber: item.asnNumber, //ASN |
|
|
parentNumber: item.parentNumber, //父包装号 |
|
|
supplierCode: item.supplierCode, // 供应商 |
|
|
itemType: item.itemType, //物料类型 |
|
|
qty: item.qty, // 数量 |
|
|
asnNumber: item.asnNumber, //ASN |
|
|
printTimes: getCurrDateTime(), // 打印时间 |
|
|
supplierCode: item.supplierCode, // 供应商 |
|
|
productionLineCode: item.productionLineCode, //生产线 |
|
|
qty: item.qty, // 数量 |
|
|
barcodeString: item.barcodeString, // 标签信息 |
|
|
printTimes: getCurrDateTime(), // 打印时间 |
|
|
barcodeBase64: '', |
|
|
productionLineCode: item.productionLineCode, //生产线 |
|
|
requestNumber: item.requestNumber |
|
|
barcodeString: item.barcodeString, // 标签信息 |
|
|
|
|
|
barcodeBase64: '', |
|
|
|
|
|
requestNumber: item.requestNumber |
|
|
|
|
|
}) |
|
|
}) |
|
|
}) |
|
|
}) |
|
|
} else { |
|
|
} else { |
|
|
throw new Error("提交失败") |
|
|
throw new Error("提交失败") |
|
|
} |
|
|
|
|
|
}catch(error){ |
|
|
|
|
|
console.log('异常',error) |
|
|
|
|
|
if(error.indexOf('请返回开工阶段')>-1){ |
|
|
|
|
|
uni.hideLoading() |
|
|
|
|
|
this.showErrorMessage('计划已完成') |
|
|
|
|
|
this.clearData() |
|
|
|
|
|
this.openFg(); |
|
|
|
|
|
return |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
//装配收货记录 生成后 创建 制品上架申请 |
|
|
//装配收货记录 生成后 创建 制品上架申请 |
|
|