From 8ae1a147aefadbb255edde088e7c12535c5f02d4 Mon Sep 17 00:00:00 2001
From: huangxiaoqiang <huangxiaoqiang@hnkhzn.com>
Date: 星期三, 08 十月 2025 20:35:51 +0800
Subject: [PATCH] 完善输送线和堆垛机任务处理逻辑在CommonConveyorLine_NewCW.cs`中添加版本注释和设备属性定义,增强设备连接状态检查与命令发送逻辑。 修改 CommonConveyorLine_GWJob.cs`的任务查询逻辑,确保在特定条件下不下发新任务。在CommonConveyorLine_NewCWJob.cs中实现请求入库和出库的处理逻辑,确保任务状态更新。在 RequestInbound.cs中添加出库任务和新任务的处理逻辑,增强异常处理。 在CommonStackerCrane_NewCWJob.cs中实现堆垛机任务完成事件的处理,确保状态更新和前端通知。新增设备型号修改相关常量和 DTO 类,更新服务接口和实现逻辑,确保设备型号修改请求的正确处理。修改 Dt_TaskService.cs中的任务处理逻辑,确保出库任务的库存判断和状态更新。
---
Code Management/WMS/WIDESEA_WMSClient/src/views/system/UserInfo.vue | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/Code Management/WMS/WIDESEA_WMSClient/src/views/system/UserInfo.vue b/Code Management/WMS/WIDESEA_WMSClient/src/views/system/UserInfo.vue
index 2bd0f13..5faa0ed 100644
--- a/Code Management/WMS/WIDESEA_WMSClient/src/views/system/UserInfo.vue
+++ b/Code Management/WMS/WIDESEA_WMSClient/src/views/system/UserInfo.vue
@@ -62,7 +62,7 @@
return this.$message.error("涓ゆ瀵嗙爜涓嶄竴鑷�");
}
let url =
- "/api/user/modifyPwd?oldPwd=" +
+ "/api/Sys_User/modifyPwd?oldPwd=" +
this.modifyOptions.fields.oldPwd +
"&newPwd=" +
this.modifyOptions.fields.newPwd;
@@ -77,7 +77,7 @@
},
modifyInfo() {
this.$refs.form.validate(() => {
- this.http.post('api/user/updateUserInfo', this.userInfo).then(result => {
+ this.http.post('api/Sys_User/updateUserInfo', this.userInfo).then(result => {
this.$message.success(result);
let userInfo = this.$store.getters.getUserInfo();
userInfo.img = this.userInfo.headImageUrl;
@@ -94,7 +94,7 @@
var forms = new FormData();
let file = e.target.files[0]
forms.append('fileInput', file, file.name);
- const url = 'api/sys_user/upload'
+ const url = 'api/Sys_User/upload'
this.http
.post(url, forms, true, {
headers:{'Content-Type':'multipart/form-data'}
@@ -108,7 +108,7 @@
}
},
created() {
- this.http.post("/api/user/getCurrentUserInfo", {}, true).then((x) => {
+ this.http.post("/api/Sys_User/getCurrentUserInfo", {}, true).then((x) => {
if (!x.status) {
return this.$message(x.message);
}
--
Gitblit v1.9.3