From 0ee940c32fb24ec0eaa6548beb476f2beb2cce62 Mon Sep 17 00:00:00 2001 From: wuzeyu <1223318623@qq.com> Date: 星期四, 01 八月 2024 08:48:40 +0800 Subject: [PATCH] Merge branch 'master' of http://8.140.179.55:20000/r/pipIrr-SV --- pipIrr-platform/pipIrr-common/src/main/java/com/dy/common/mw/protocol/p206V202404/parse/Cd_92_A2_Down.java | 15 +++++++-------- 1 files changed, 7 insertions(+), 8 deletions(-) diff --git a/pipIrr-platform/pipIrr-common/src/main/java/com/dy/common/mw/protocol/p206V202404/parse/Cd_92_A2_Down.java b/pipIrr-platform/pipIrr-common/src/main/java/com/dy/common/mw/protocol/p206V202404/parse/Cd_92_A2_Down.java index 5dba686..b4be867 100644 --- a/pipIrr-platform/pipIrr-common/src/main/java/com/dy/common/mw/protocol/p206V202404/parse/Cd_92_A2_Down.java +++ b/pipIrr-platform/pipIrr-common/src/main/java/com/dy/common/mw/protocol/p206V202404/parse/Cd_92_A2_Down.java @@ -5,7 +5,6 @@ import com.dy.common.mw.protocol.*; import com.dy.common.mw.protocol.p206V202404.CodeV202404; import com.dy.common.mw.protocol.p206V202404.ParseParamsForDownV202404; -import com.dy.common.mw.protocol.p206V202404.downVos.ComCd22Vo; import com.dy.common.mw.protocol.p206V202404.downVos.ComCd92_A2Vo; import com.dy.common.mw.protocol.p206V202404.parse.global.GlCreate; import com.dy.common.util.ByteUtil; @@ -80,7 +79,7 @@ if(!NumUtil.isPlusIntNumber(cvo.orderNo)){ throw new Exception("璁㈠崟鍙峰繀椤绘槸16浣嶆暟瀛�") ; } - if(cvo.orderNo.length() != 12){ + if(cvo.orderNo.length() != 16){ throw new Exception("璁㈠崟鍙峰繀椤绘槸16浣嶆暟瀛�") ; } @@ -103,7 +102,7 @@ GlCreate.createIcCardNo(cvo.icCardNo, bs, index); index += 8 ; - if(cvo.waterRemain != null){ + if(cvo.waterRemain == null){ cvo.waterRemain = 0.0 ; } String strTemp = "" + Double.valueOf(cvo.waterRemain * 100).intValue() ; @@ -113,15 +112,15 @@ for(int i = 0 ; i < bTempLen; i++){ bs[index++] = bTemp[i] ; count ++ ; - if(count >= 4){ + if(count >= 5){ break ; } } - for(; count < 4; count++){ + for(; count < 5; count++){ bs[index++] = 0 ; } - if(cvo.moneyRemain != null){ + if(cvo.moneyRemain == null){ cvo.moneyRemain = 0.0 ; } strTemp = "" + (Double.valueOf(cvo.moneyRemain * 100)).intValue() ; @@ -140,7 +139,7 @@ } - if(cvo.waterPrice != null){ + if(cvo.waterPrice == null){ cvo.waterPrice = 0.0 ; } strTemp = "" + (Double.valueOf(cvo.waterPrice * 100)).intValue() ; @@ -159,7 +158,7 @@ } - if(cvo.elePrice != null){ + if(cvo.elePrice == null){ cvo.elePrice = 0.0 ; } strTemp = "" + (Double.valueOf(cvo.elePrice * 100)).intValue() ; -- Gitblit v1.8.0