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