소스 검색

同步代码

gaodm 4 년 전
부모
커밋
eb09cafec0
1개의 변경된 파일5개의 추가작업 그리고 1개의 파일을 삭제
  1. 5 1
      src/main/java/com/diagbot/process/OtherTipProcess.java

+ 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)) {