|
@@ -68,8 +68,13 @@ public class OtherTipProcess {
|
|
|
} else {
|
|
|
content += CoreUtil.subZeroAndDot(otherTipNeoDTO.getValue().toString());
|
|
|
}
|
|
|
- BillMsg billMsg = MsgUtil.getCommonOtherTipLisMsg(content, (String)map.get("msg"), nodeNeoDTO.getTermtype());
|
|
|
- res.getOtherList().add(billMsg);
|
|
|
+ List<String> msgList = (List<String>)map.get("msg");
|
|
|
+ if (ListUtil.isNotEmpty(msgList)) {
|
|
|
+ for (String msg : msgList) {
|
|
|
+ BillMsg billMsg = MsgUtil.getCommonOtherTipLisMsg(content, msg, nodeNeoDTO.getTermtype());
|
|
|
+ res.getOtherList().add(billMsg);
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
}
|