|
|
@@ -4944,8 +4944,9 @@ public class ReceivableServiceImpl extends ServiceImpl<ReceivableMapper, InsPlyI
|
|
|
insFeeFollowOrderLambdaQueryWrapper.eq(InsFeeFollowOrder::getYear, action.getYear());
|
|
|
List<String> monthList;
|
|
|
String monthStr = action.getMonth();
|
|
|
- if (StrUtil.contains(monthStr, ",")) {
|
|
|
- monthList = Arrays.asList(monthStr.split(","));
|
|
|
+ String searchStr = ",";
|
|
|
+ if (StrUtil.contains(monthStr, searchStr)) {
|
|
|
+ monthList = Arrays.asList(monthStr.split(searchStr));
|
|
|
} else {
|
|
|
monthList = Collections.singletonList(monthStr);
|
|
|
}
|