diff --git a/src/views/oms/emisWaybill/WsInBatchList.vue b/src/views/oms/emisWaybill/WsInBatchList.vue index e5f4d77..f102c97 100644 --- a/src/views/oms/emisWaybill/WsInBatchList.vue +++ b/src/views/oms/emisWaybill/WsInBatchList.vue @@ -146,7 +146,7 @@
反馈异常 - 进仓确认 + {{item.confirmStatus==1?'确认已进仓':'进仓确认'}}
@@ -213,7 +213,7 @@ export default { dateTimeRange:[], // 总条数 total: 0, - // 进仓单批次表格数据 + // 进仓单批次表格数据 emisWarehouseInBatchList: this.stockInBatchList, currentId:null, @@ -396,13 +396,13 @@ export default { dateTimeChange(value){ this.dateTimeRange=value; }, - async confirmJinCang(inNo) { + async confirmJinCang(inNo,id) { let confirmStatus = '2' // 部分入仓 if (!inNo) { confirmStatus = '1' // 全部入仓 inNo = this.billInfo.inNo } - let res = await cusConfirmWsIn({ inNo, confirmStatus, _loading: true }).then(() => { + let res = await cusConfirmWsIn({ inNo, confirmStatus, _loading: true ,id:id }).then(() => { this.$modal.msgSuccess("操作成功"); }) },