From f4c3f82a3bd142bc555ec7f632dabc66ef86f5af Mon Sep 17 00:00:00 2001
From: huanghongfeng <huanghongfeng@hnkhzn.com>
Date: 星期二, 19 八月 2025 16:51:45 +0800
Subject: [PATCH] 11
---
项目代码/WMS/WIDESEA_WMSClient/src/extension/widesea_wms/stock/HandTask/ManualOutboundTask.vue | 11 +++++++----
1 files changed, 7 insertions(+), 4 deletions(-)
diff --git "a/\351\241\271\347\233\256\344\273\243\347\240\201/WMS/WIDESEA_WMSClient/src/extension/widesea_wms/stock/HandTask/ManualOutboundTask.vue" "b/\351\241\271\347\233\256\344\273\243\347\240\201/WMS/WIDESEA_WMSClient/src/extension/widesea_wms/stock/HandTask/ManualOutboundTask.vue"
index 6df9919..0e9f3d7 100644
--- "a/\351\241\271\347\233\256\344\273\243\347\240\201/WMS/WIDESEA_WMSClient/src/extension/widesea_wms/stock/HandTask/ManualOutboundTask.vue"
+++ "b/\351\241\271\347\233\256\344\273\243\347\240\201/WMS/WIDESEA_WMSClient/src/extension/widesea_wms/stock/HandTask/ManualOutboundTask.vue"
@@ -8,8 +8,8 @@
<el-form-item label="绔欏彴" prop="station">
<el-select v-model="form.station" placeholder="璇烽�夋嫨涓嬫枡鍙�">
<el-option label="涓婃枡鍙�(2009)" value="2009" />
- <el-option label="宸︿晶涓嬫枡鍙�(2032)" value="2032" />
- <el-option label="鍙充晶涓嬫枡鍙�(2042)" value="2042" />
+ <el-option label="1鍙峰帇瑁呮満(2032)" value="2032" />
+ <el-option label="2鍙峰帇瑁呮満(2042)" value="2042" />
</el-select>
</el-form-item>
</el-form>
@@ -41,15 +41,16 @@
form: {
palletCode: "",
station: "",
-
+ outtype:""
},
show: false,
};
},
methods: {
- open(palletCode) {
+ open(palletCode,outtype) {
this.show = true;
this.form.palletCode = palletCode;
+ this.form.outtype = outtype;
},
submit() {
this.$emit("parentCall", ($vue) => {
@@ -68,6 +69,7 @@
MainData: {
station: this.form.station,
palletCode: this.form.palletCode,
+ outtype:this.form.outtype,
},
};
this.http.post("/api/Task/CreateAndSendOutboundTask",parm, true).then((x) => {
@@ -77,6 +79,7 @@
this.$Message.success("鎴愬姛");
this.form.palletCode='';
this.form.station='';
+ this.form.outtype='';
this.show = false;
$vue.refresh();
}
--
Gitblit v1.9.3