From 43791e8ab64e059ea40c721f1fd9c1372c454f6a Mon Sep 17 00:00:00 2001
From: yangzifeng <2547435354@qq.com>
Date: Fri, 13 Feb 2026 08:17:01 +0800
Subject: [PATCH 1/3] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=BA=93=E5=AD=98?=
=?UTF-8?q?=E6=9F=A5=E8=AF=A2=E6=89=93=E5=8D=B0=E7=9A=84=E6=8A=A5=E9=94=99?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/views/wisdom/stock/index.vue | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/src/views/wisdom/stock/index.vue b/src/views/wisdom/stock/index.vue
index ae24fbb..42c698c 100644
--- a/src/views/wisdom/stock/index.vue
+++ b/src/views/wisdom/stock/index.vue
@@ -114,6 +114,7 @@
ref="infoTableRef"
highlight-current-row
@row-click="(row) => tableInfoRowClick(row, infoTableRef)"
+ @selection-change="printSelectionChange"
border>
@@ -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)
From e400907db9b7178345b3cb59866b03161fb0ab59 Mon Sep 17 00:00:00 2001
From: yangzifeng <2547435354@qq.com>
Date: Fri, 13 Feb 2026 09:43:42 +0800
Subject: [PATCH 2/3] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E9=85=8D=E9=80=81?=
=?UTF-8?q?=E7=8A=B6=E6=80=81?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/views/wisdom/outbound/index.vue | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
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 @@
>否
是
- 配送中
- 配送完成
+ 待配送
+ 配送中
+ 配送完成
Date: Fri, 13 Feb 2026 10:11:19 +0800
Subject: [PATCH 3/3] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E7=A7=BB=E5=BA=93?=
=?UTF-8?q?=E7=9A=84=E6=8F=90=E7=A4=BA?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/views/wisdom/stock/index.vue | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/src/views/wisdom/stock/index.vue b/src/views/wisdom/stock/index.vue
index 42c698c..33f3605 100644
--- a/src/views/wisdom/stock/index.vue
+++ b/src/views/wisdom/stock/index.vue
@@ -566,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;