From 35ffaef7c4df56fa92d8d18b75ed7223f40986f7 Mon Sep 17 00:00:00 2001
From: yunuo970428 <405378304@qq.com>
Date: Fri, 18 Apr 2025 16:18:06 +0800
Subject: [PATCH] =?UTF-8?q?=E5=AE=8C=E5=96=84=E8=B0=83=E6=8B=A8?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
yxt-as-ui/src/api/storage/allocation.js | 34 ++++---------------
.../storage/allocation/allocationAdd.vue | 2 +-
.../storage/allocation/allocationInfo.vue | 2 +-
.../allocation/relation/chooseproducts.vue | 6 ++--
.../allocationByBranchesAdd.vue | 2 +-
.../allocationByBranchesInfo.vue | 2 +-
.../relation/chooseproducts.vue | 6 ++--
.../allocationByGroupAdd.vue | 2 +-
.../allocationByGroupInfo.vue | 2 +-
.../relation/chooseproducts.vue | 6 ++--
.../allocationByBranchesDaiBan.vue | 2 +-
.../allocationByBranchesEdit.vue | 2 +-
.../allocationByBranchesYiBan.vue | 2 +-
.../relation/chooseproducts.vue | 4 +--
.../allocationByGroupDaiBan.vue | 2 +-
.../allocationByGroupEdit.vue | 2 +-
.../allocationByGroupYiBan.vue | 2 +-
.../relation/chooseproducts.vue | 4 +--
.../allocationFlow/allocationDaiBan.vue | 2 +-
.../allocationFlow/allocationEdit.vue | 2 +-
.../allocationFlow/allocationYiBan.vue | 2 +-
.../relation/chooseproducts.vue | 4 +--
22 files changed, 36 insertions(+), 58 deletions(-)
diff --git a/yxt-as-ui/src/api/storage/allocation.js b/yxt-as-ui/src/api/storage/allocation.js
index 27c4a4bf62..715620b6fb 100644
--- a/yxt-as-ui/src/api/storage/allocation.js
+++ b/yxt-as-ui/src/api/storage/allocation.js
@@ -1,11 +1,9 @@
import request from '@/utils/request'
export default {
-
// 查询分页列表
listPage: function(params) {
return request({
- // baseURL: "http://127.0.0.1:4523/m1/4061550-0-default",
url: '/wms/apiadmin/inventory/wmsinventoryallocatebill/listPage',
method: 'post',
data: params,
@@ -14,10 +12,8 @@ export default {
}
})
},
-
deleteBySids: function(data) {
return request({
- // baseURL: "http://127.0.0.1:4523/m1/4061550-0-default",
url: '/wms/apiadmin/inventory/wmsinventoryallocatebill/delBySids',
method: 'DELETE',
data: data,
@@ -26,59 +22,49 @@ export default {
}
})
},
-
// 保存物流信息
saveLogisticsInfo: function(data) {
return request({
- // baseURL: "http://127.0.0.1:4523/m1/4061550-0-default",
url: '/wms/v1/wmsinventoryallocatebilllogistics/saveLogisticsInfo',
method: 'post',
data: data,
headers: {
'Content-Type': 'application/json'
}
- });
+ })
},
// 新增、保存
save: function(data) {
return request({
- // baseURL: "http://127.0.0.1:4523/m1/4061550-0-default",
url: '/wms/apiadmin/inventory/wmsinventoryallocatebill/save',
method: 'post',
data: data,
headers: {
'Content-Type': 'application/json'
}
- });
+ })
},
-
// 初始化
init: function(data) {
return request({
- // baseURL: "http://127.0.0.1:4523/m1/4061550-0-default",
url: '/wms/apiadmin/inventory/wmsinventoryallocatebill/fetchDetailsBySid/' + data,
method: 'get'
- });
+ })
},
-
// 调拨
allocation: function(data) {
return request({
- // baseURL: "http://127.0.0.1:4523/m1/4061550-0-default",
url: '/wms/apiadmin/inventory/wmsinventoryallocatebill/submitApply',
method: 'post',
data: data,
headers: {
'Content-Type': 'application/json'
}
- });
+ })
},
-
-
// 查询所有商品
getGoods: function(params) {
return request({
- // baseURL: "http://127.0.0.1:4523/m1/4061550-0-default",
url: '/wms/apiadmin/inventory/wmsinventory/alloGoodsListPage',
method: 'post',
data: params,
@@ -87,7 +73,6 @@ export default {
}
})
},
-
// 查询所有仓库
getWarehouses: function(params) {
return request({
@@ -99,8 +84,6 @@ export default {
}
})
},
-
-
// 根据仓库查询库位
getWarehouseareas: function(data) {
return request({
@@ -110,12 +93,8 @@ export default {
headers: {
'Content-Type': 'application/json'
}
- });
+ })
},
-
-
-
-
// 流程审批(同意)
complete: function(params) {
return request({
@@ -197,6 +176,5 @@ export default {
method: 'get',
params: data
})
- },
-
+ }
}
diff --git a/yxt-as-ui/src/views/storage/allocation/allocationAdd.vue b/yxt-as-ui/src/views/storage/allocation/allocationAdd.vue
index 2cb00f1ce9..774dd239ad 100644
--- a/yxt-as-ui/src/views/storage/allocation/allocationAdd.vue
+++ b/yxt-as-ui/src/views/storage/allocation/allocationAdd.vue
@@ -70,7 +70,7 @@
-
+
diff --git a/yxt-as-ui/src/views/storage/allocation/allocationInfo.vue b/yxt-as-ui/src/views/storage/allocation/allocationInfo.vue
index 7108018587..dcb1810b95 100644
--- a/yxt-as-ui/src/views/storage/allocation/allocationInfo.vue
+++ b/yxt-as-ui/src/views/storage/allocation/allocationInfo.vue
@@ -50,7 +50,7 @@
-
+
diff --git a/yxt-as-ui/src/views/storage/allocation/relation/chooseproducts.vue b/yxt-as-ui/src/views/storage/allocation/relation/chooseproducts.vue
index 988b32bc54..b5ab342a21 100644
--- a/yxt-as-ui/src/views/storage/allocation/relation/chooseproducts.vue
+++ b/yxt-as-ui/src/views/storage/allocation/relation/chooseproducts.vue
@@ -8,7 +8,7 @@
关闭
-
+
{{ searchxianshitit }}
@@ -16,7 +16,7 @@
-
+
@@ -39,7 +39,7 @@
-
+
diff --git a/yxt-as-ui/src/views/storage/allocationByBranches/allocationByBranchesAdd.vue b/yxt-as-ui/src/views/storage/allocationByBranches/allocationByBranchesAdd.vue
index 8f622acf1c..667fc9b607 100644
--- a/yxt-as-ui/src/views/storage/allocationByBranches/allocationByBranchesAdd.vue
+++ b/yxt-as-ui/src/views/storage/allocationByBranches/allocationByBranchesAdd.vue
@@ -136,7 +136,7 @@
-
+
diff --git a/yxt-as-ui/src/views/storage/allocationByBranches/allocationByBranchesInfo.vue b/yxt-as-ui/src/views/storage/allocationByBranches/allocationByBranchesInfo.vue
index 03875b1240..47fef705b2 100644
--- a/yxt-as-ui/src/views/storage/allocationByBranches/allocationByBranchesInfo.vue
+++ b/yxt-as-ui/src/views/storage/allocationByBranches/allocationByBranchesInfo.vue
@@ -50,7 +50,7 @@
-
+
diff --git a/yxt-as-ui/src/views/storage/allocationByBranches/relation/chooseproducts.vue b/yxt-as-ui/src/views/storage/allocationByBranches/relation/chooseproducts.vue
index 597fd95465..99e9e6727a 100644
--- a/yxt-as-ui/src/views/storage/allocationByBranches/relation/chooseproducts.vue
+++ b/yxt-as-ui/src/views/storage/allocationByBranches/relation/chooseproducts.vue
@@ -8,7 +8,7 @@
关闭
-
+
{{ searchxianshitit }}
@@ -16,7 +16,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/yxt-as-ui/src/views/storage/allocationByGroup/allocationByGroupAdd.vue b/yxt-as-ui/src/views/storage/allocationByGroup/allocationByGroupAdd.vue
index 25b226448e..64f03adbd2 100644
--- a/yxt-as-ui/src/views/storage/allocationByGroup/allocationByGroupAdd.vue
+++ b/yxt-as-ui/src/views/storage/allocationByGroup/allocationByGroupAdd.vue
@@ -136,7 +136,7 @@
-
+
diff --git a/yxt-as-ui/src/views/storage/allocationByGroup/allocationByGroupInfo.vue b/yxt-as-ui/src/views/storage/allocationByGroup/allocationByGroupInfo.vue
index 3ca37ad717..b981eb3210 100644
--- a/yxt-as-ui/src/views/storage/allocationByGroup/allocationByGroupInfo.vue
+++ b/yxt-as-ui/src/views/storage/allocationByGroup/allocationByGroupInfo.vue
@@ -50,7 +50,7 @@
-
+
diff --git a/yxt-as-ui/src/views/storage/allocationByGroup/relation/chooseproducts.vue b/yxt-as-ui/src/views/storage/allocationByGroup/relation/chooseproducts.vue
index 597fd95465..99e9e6727a 100644
--- a/yxt-as-ui/src/views/storage/allocationByGroup/relation/chooseproducts.vue
+++ b/yxt-as-ui/src/views/storage/allocationByGroup/relation/chooseproducts.vue
@@ -8,7 +8,7 @@
关闭
-
+
{{ searchxianshitit }}
@@ -16,7 +16,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/yxt-as-ui/src/views/workFlow/allocationByBranchesFlow/allocationByBranchesDaiBan.vue b/yxt-as-ui/src/views/workFlow/allocationByBranchesFlow/allocationByBranchesDaiBan.vue
index 4a57e5e01f..0e6434406e 100644
--- a/yxt-as-ui/src/views/workFlow/allocationByBranchesFlow/allocationByBranchesDaiBan.vue
+++ b/yxt-as-ui/src/views/workFlow/allocationByBranchesFlow/allocationByBranchesDaiBan.vue
@@ -53,7 +53,7 @@
-
+
diff --git a/yxt-as-ui/src/views/workFlow/allocationByBranchesFlow/allocationByBranchesEdit.vue b/yxt-as-ui/src/views/workFlow/allocationByBranchesFlow/allocationByBranchesEdit.vue
index 8e4f759bac..124d43d867 100644
--- a/yxt-as-ui/src/views/workFlow/allocationByBranchesFlow/allocationByBranchesEdit.vue
+++ b/yxt-as-ui/src/views/workFlow/allocationByBranchesFlow/allocationByBranchesEdit.vue
@@ -79,7 +79,7 @@
-
+
diff --git a/yxt-as-ui/src/views/workFlow/allocationByBranchesFlow/allocationByBranchesYiBan.vue b/yxt-as-ui/src/views/workFlow/allocationByBranchesFlow/allocationByBranchesYiBan.vue
index 0dbe38181c..eb0197c843 100644
--- a/yxt-as-ui/src/views/workFlow/allocationByBranchesFlow/allocationByBranchesYiBan.vue
+++ b/yxt-as-ui/src/views/workFlow/allocationByBranchesFlow/allocationByBranchesYiBan.vue
@@ -50,7 +50,7 @@
-
+
diff --git a/yxt-as-ui/src/views/workFlow/allocationByBranchesFlow/relation/chooseproducts.vue b/yxt-as-ui/src/views/workFlow/allocationByBranchesFlow/relation/chooseproducts.vue
index 597fd95465..db10631d98 100644
--- a/yxt-as-ui/src/views/workFlow/allocationByBranchesFlow/relation/chooseproducts.vue
+++ b/yxt-as-ui/src/views/workFlow/allocationByBranchesFlow/relation/chooseproducts.vue
@@ -16,7 +16,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/yxt-as-ui/src/views/workFlow/allocationByGroupFlow/allocationByGroupDaiBan.vue b/yxt-as-ui/src/views/workFlow/allocationByGroupFlow/allocationByGroupDaiBan.vue
index 10e6f66f44..0d9ae42ff2 100644
--- a/yxt-as-ui/src/views/workFlow/allocationByGroupFlow/allocationByGroupDaiBan.vue
+++ b/yxt-as-ui/src/views/workFlow/allocationByGroupFlow/allocationByGroupDaiBan.vue
@@ -53,7 +53,7 @@
-
+
diff --git a/yxt-as-ui/src/views/workFlow/allocationByGroupFlow/allocationByGroupEdit.vue b/yxt-as-ui/src/views/workFlow/allocationByGroupFlow/allocationByGroupEdit.vue
index 6d58535884..6435c42476 100644
--- a/yxt-as-ui/src/views/workFlow/allocationByGroupFlow/allocationByGroupEdit.vue
+++ b/yxt-as-ui/src/views/workFlow/allocationByGroupFlow/allocationByGroupEdit.vue
@@ -89,7 +89,7 @@
-
+
diff --git a/yxt-as-ui/src/views/workFlow/allocationByGroupFlow/allocationByGroupYiBan.vue b/yxt-as-ui/src/views/workFlow/allocationByGroupFlow/allocationByGroupYiBan.vue
index 4ecf45e517..5707550dd3 100644
--- a/yxt-as-ui/src/views/workFlow/allocationByGroupFlow/allocationByGroupYiBan.vue
+++ b/yxt-as-ui/src/views/workFlow/allocationByGroupFlow/allocationByGroupYiBan.vue
@@ -50,7 +50,7 @@
-
+
diff --git a/yxt-as-ui/src/views/workFlow/allocationByGroupFlow/relation/chooseproducts.vue b/yxt-as-ui/src/views/workFlow/allocationByGroupFlow/relation/chooseproducts.vue
index 597fd95465..db10631d98 100644
--- a/yxt-as-ui/src/views/workFlow/allocationByGroupFlow/relation/chooseproducts.vue
+++ b/yxt-as-ui/src/views/workFlow/allocationByGroupFlow/relation/chooseproducts.vue
@@ -16,7 +16,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/yxt-as-ui/src/views/workFlow/allocationFlow/allocationDaiBan.vue b/yxt-as-ui/src/views/workFlow/allocationFlow/allocationDaiBan.vue
index 82ddef49be..b3f49ef483 100644
--- a/yxt-as-ui/src/views/workFlow/allocationFlow/allocationDaiBan.vue
+++ b/yxt-as-ui/src/views/workFlow/allocationFlow/allocationDaiBan.vue
@@ -53,7 +53,7 @@
-
+
diff --git a/yxt-as-ui/src/views/workFlow/allocationFlow/allocationEdit.vue b/yxt-as-ui/src/views/workFlow/allocationFlow/allocationEdit.vue
index 416ee61e3b..aec6525987 100644
--- a/yxt-as-ui/src/views/workFlow/allocationFlow/allocationEdit.vue
+++ b/yxt-as-ui/src/views/workFlow/allocationFlow/allocationEdit.vue
@@ -69,7 +69,7 @@
-
+
diff --git a/yxt-as-ui/src/views/workFlow/allocationFlow/allocationYiBan.vue b/yxt-as-ui/src/views/workFlow/allocationFlow/allocationYiBan.vue
index 0dbe38181c..eb0197c843 100644
--- a/yxt-as-ui/src/views/workFlow/allocationFlow/allocationYiBan.vue
+++ b/yxt-as-ui/src/views/workFlow/allocationFlow/allocationYiBan.vue
@@ -50,7 +50,7 @@
-
+
diff --git a/yxt-as-ui/src/views/workFlow/allocationFlow/relation/chooseproducts.vue b/yxt-as-ui/src/views/workFlow/allocationFlow/relation/chooseproducts.vue
index d473de9213..e5fb5016ae 100644
--- a/yxt-as-ui/src/views/workFlow/allocationFlow/relation/chooseproducts.vue
+++ b/yxt-as-ui/src/views/workFlow/allocationFlow/relation/chooseproducts.vue
@@ -16,7 +16,7 @@
-
+
@@ -38,7 +38,7 @@
-
+