diff --git a/src/views/wisdom/outbound/index.vue b/src/views/wisdom/outbound/index.vue index 58171e0..adb5630 100644 --- a/src/views/wisdom/outbound/index.vue +++ b/src/views/wisdom/outbound/index.vue @@ -113,8 +113,9 @@ >否 - 配送中 - 配送完成 + 待配送 + 配送中 + 配送完成 @@ -347,7 +348,7 @@ const showSearch = ref(true); const warehouseCode = ref(''); //所属仓库下拉数据 -const printList = ref([]) //要打印的数据列表 + const optionTime = ref([]) //入库时间 @@ -416,6 +417,11 @@ function getList() { } getList(); +const printList = ref([]) //要打印的数据列表 +const printSelectionChange = (selection) => { + printList.value = selection +} + // 获取总计 const totalMoney = ref(null) const pcodeCount = ref(null) @@ -560,12 +566,12 @@ function submitMoveForm() { proxy.$modal.msgError("仓库不能为空"); return; } - if (checkStockList.value[0].pcode == checkStockList.value[0].toPcode) { - proxy.$modal.msgError( - "不允许选择原来的库位【" + checkStockList.value[0].pcode + "】" - ); - return; - } + // if (checkStockList.value[0].pcode == checkStockList.value[0].toPcode) { + // proxy.$modal.msgError( + // "不允许选择原来的库位【" + checkStockList.value[0].pcode + "】" + // ); + // return; + // } if (checkStockList.value[0].realQty > checkStockList.value[0].num) { proxy.$modal.msgError("移库数量不正确"); return;