Merge branch 'feature/v3-siFunctionImprove-0112' into release/2.5.3.2301.01
This commit is contained in:
commit
57753bfb4a
|
|
@ -1476,7 +1476,10 @@ public class SIAccountBiz extends Service {
|
|||
if (archivesPerson != null) {
|
||||
categoryIds.forEach(item -> {
|
||||
if (archivesPerson.containsKey(String.valueOf(item)) && schemeperson.containsKey(item)) {
|
||||
needArchivesPerson.add(item);
|
||||
if (StringUtils.isNotBlank(archivesPerson.get(item))) {
|
||||
needArchivesPerson.add(item);
|
||||
}
|
||||
|
||||
}
|
||||
});
|
||||
}
|
||||
|
|
@ -1512,7 +1515,10 @@ public class SIAccountBiz extends Service {
|
|||
if (archivesCom != null) {
|
||||
categoryIds.forEach(item -> {
|
||||
if (archivesCom.containsKey(String.valueOf(item)) && schemeCom.containsKey(item)) {
|
||||
needArchivesCom.add(item);
|
||||
if (StringUtils.isNotBlank(archivesCom.get(item))) {
|
||||
needArchivesCom.add(item);
|
||||
}
|
||||
|
||||
}
|
||||
});
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue