|
@@ -347,7 +347,9 @@ public class InfoServiceImpl implements InfoService {
|
|
if (ObjectUtil.isEmpty(customerUser)) {
|
|
if (ObjectUtil.isEmpty(customerUser)) {
|
|
continue;
|
|
continue;
|
|
}
|
|
}
|
|
- record.setCustomerInfo(customerInfoMap.get(customerUser.getCustomerId()));
|
|
|
|
|
|
+ Long customerId = customerUser.getCustomerId();
|
|
|
|
+ record.setCustomerId(customerId);
|
|
|
|
+ record.setCustomerInfo(customerInfoMap.get(customerId));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|