master #13

Merged
lsm merged 5 commits from master into prod 2025-09-17 17:05:48 +08:00
Showing only changes of commit bfada06cfe - Show all commits

View File

@@ -212,7 +212,7 @@ public class MeetBookingServiceImpl implements IMeetBookingService {
}
if (CollUtil.isNotEmpty(remoteUserVos)) {
ResidentPersonVo residentPersonVo = remoteUserVos.stream()
.filter(vo -> vo.getUserId() != null && String.valueOf(vo.getUserId()).equals(s.getPerson())).findFirst().orElse(null);
.filter(vo -> vo.getId() != null && String.valueOf(vo.getId()).equals(s.getPerson())).findFirst().orElse(null);
s.setPersonName(ObjectUtil.isNotEmpty(residentPersonVo) ? residentPersonVo.getUserName() : null);
}
String str = df.format(s.getScheduledStarttime());