gaodm 4 rokov pred
rodič
commit
eb09cafec0

+ 5 - 1
src/main/java/com/diagbot/process/OtherTipProcess.java

@@ -73,7 +73,11 @@ public class OtherTipProcess {
                         if (StringUtil.isNotBlank(otherTipNeoDTO.getOtherValue())) {
                             content += otherTipNeoDTO.getOtherValue();
                         } else {
-                            content += CoreUtil.subZeroAndDot(otherTipNeoDTO.getValue().toString());
+                            if (StringUtil.isNotBlank(otherTipNeoDTO.getResult())) {
+                                content += otherTipNeoDTO.getResult();
+                            } else {
+                                content += CoreUtil.subZeroAndDot(otherTipNeoDTO.getValue().toString());
+                            }
                         }
                         List<String> msgList = (List<String>)map.get("msg");
                         if (ListUtil.isNotEmpty(msgList)) {