From e6b315c7e14102adf3835249f3112234e5c4720b Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E7=8E=8B=E5=B8=85?= <3115919733@qq.com>
Date: Wed, 21 May 2025 14:19:34 +0800
Subject: [PATCH 1/6] =?UTF-8?q?=E8=B4=A7=E4=BD=8D=E4=BF=A1=E6=81=AF?=
=?UTF-8?q?=E4=BB=A5=E4=BB=93=E5=BA=93=E7=BC=96=E7=A0=81=EF=BC=8C=E8=B4=A7?=
=?UTF-8?q?=E4=BD=8D=E7=BC=96=E7=A0=81=E6=8E=92=E5=BA=8F?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
zi-wms-pda/src/main/resources/com/cim/idm/dao/WareHouseDao.xml | 1 +
1 file changed, 1 insertion(+)
diff --git a/zi-wms-pda/src/main/resources/com/cim/idm/dao/WareHouseDao.xml b/zi-wms-pda/src/main/resources/com/cim/idm/dao/WareHouseDao.xml
index d4224be..185d2ef 100644
--- a/zi-wms-pda/src/main/resources/com/cim/idm/dao/WareHouseDao.xml
+++ b/zi-wms-pda/src/main/resources/com/cim/idm/dao/WareHouseDao.xml
@@ -30,6 +30,7 @@
AND a.ERPLOCATION = #{dto.erpLocation}
+ ORDER BY a.ERPLOCATION,a.STORAGENAME
+
\ No newline at end of file
From b44c92939cfbb7b8f1517dbf430c58d73d0bd4ad Mon Sep 17 00:00:00 2001
From: 18110972313 <780768673@qq.com>
Date: Wed, 21 May 2025 18:51:03 +0800
Subject: [PATCH 6/6] =?UTF-8?q?update=20=E4=BF=AE=E6=94=B9MES=E7=89=A9?=
=?UTF-8?q?=E6=96=99=E6=B6=88=E8=80=97=EF=BC=8C=E8=BF=94=E5=9B=9E=E5=80=BC?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../main/java/com/cim/idm/service/Impl/MESToWMSServiceImpl.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/zi-wms-pda/src/main/java/com/cim/idm/service/Impl/MESToWMSServiceImpl.java b/zi-wms-pda/src/main/java/com/cim/idm/service/Impl/MESToWMSServiceImpl.java
index a244163..c56b3c4 100644
--- a/zi-wms-pda/src/main/java/com/cim/idm/service/Impl/MESToWMSServiceImpl.java
+++ b/zi-wms-pda/src/main/java/com/cim/idm/service/Impl/MESToWMSServiceImpl.java
@@ -138,7 +138,7 @@ public class MESToWMSServiceImpl implements MESToWMSService {
errorCode = stringObjectMap.get("V_RETURN_CODE").toString();
String vReturnMessage = stringObjectMap.get("V_RETURN_MESSAGE").toString();
log.error("MES_CONSUME返回错误码:" + errorCode + ",错误信息:" + vReturnMessage);
- result = AjaxResult.me().setErrorCode(Integer.parseInt(errorCode)).setMessage(vReturnMessage);
+ result = AjaxResult.me().setSuccess(false).setErrorCode(400).setMessage(vReturnMessage);
return result;
}
}