修改了会议室等bug
All checks were successful
Build and Push to Target Registry / 构建并推送镜像到目标仓库 (push) Successful in 6m15s
All checks were successful
Build and Push to Target Registry / 构建并推送镜像到目标仓库 (push) Successful in 6m15s
This commit is contained in:
parent
63e5abc003
commit
b022d3a68c
@ -193,7 +193,7 @@ public class MeetBookingServiceImpl implements IMeetBookingService {
|
|||||||
if (CollUtil.isNotEmpty(residentUnitVolist)) {
|
if (CollUtil.isNotEmpty(residentUnitVolist)) {
|
||||||
ResidentUnitVo residentUnitVo = residentUnitVolist.stream()
|
ResidentUnitVo residentUnitVo = residentUnitVolist.stream()
|
||||||
.filter(vo -> vo.getId() != null && String.valueOf(vo.getId()).equals(s.getUnit())).findFirst().orElse(null);
|
.filter(vo -> vo.getId() != null && String.valueOf(vo.getId()).equals(s.getUnit())).findFirst().orElse(null);
|
||||||
s.setUnitName(residentUnitVo.getName());
|
s.setUnitName(ObjectUtil.isNotEmpty(residentUnitVo)? residentUnitVo.getName():null);
|
||||||
}
|
}
|
||||||
if (CollUtil.isNotEmpty(remoteUserVos)) {
|
if (CollUtil.isNotEmpty(remoteUserVos)) {
|
||||||
RemoteUserVo remoteUserVo = remoteUserVos.stream()
|
RemoteUserVo remoteUserVo = remoteUserVos.stream()
|
||||||
|
Loading…
Reference in New Issue
Block a user