提交 91db13ad authored 作者: 艾庆国's avatar 艾庆国

Merge branch 'refs/heads/v25.3_broker_20240906' into release

...@@ -145,7 +145,7 @@ public class SettlementJob { ...@@ -145,7 +145,7 @@ public class SettlementJob {
if (StringUtils.isNotBlank(jobParam)) { if (StringUtils.isNotBlank(jobParam)) {
childNoList = JSON.parseArray(jobParam, String.class); childNoList = JSON.parseArray(jobParam, String.class);
} }
if (childNoList == null && childNoList.isEmpty()) { if (childNoList == null || childNoList.isEmpty()) {
return; return;
} }
...@@ -173,7 +173,7 @@ public class SettlementJob { ...@@ -173,7 +173,7 @@ public class SettlementJob {
if (StringUtils.isNotBlank(jobParam)) { if (StringUtils.isNotBlank(jobParam)) {
childNoList = JSON.parseArray(jobParam, String.class); childNoList = JSON.parseArray(jobParam, String.class);
} }
if (childNoList == null && childNoList.isEmpty()) { if (childNoList == null || childNoList.isEmpty()) {
return; return;
} }
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论