This commit is contained in:
parent
b9ff994011
commit
a984876d84
1 changed files with 1 additions and 1 deletions
|
|
@ -97,7 +97,7 @@ public class VerificationResultComponent {
|
|||
log.info("Found {} AccountBalance, {} Account, {} SDf01 for {} companyId's.",
|
||||
allAccountBalance.size(), allAccount.size(), allSDf01.size(), allPresentCompanyId.size());
|
||||
for (Long companyId : allPresentCompanyId) {
|
||||
Company company = companyImdg.getSingleObjectByID(companyId);
|
||||
Company company = companyId == null ? null : companyImdg.getSingleObjectByID(companyId);
|
||||
if (company == null) {
|
||||
log.warn("Company {} not found! Ignore verification for this.", companyId);
|
||||
continue;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue