This commit is contained in:
许允枞 2025-03-26 17:10:12 +08:00
parent 36f5cbea24
commit 71a9156430
2 changed files with 15 additions and 0 deletions

View File

@ -1552,6 +1552,16 @@ public class AppInspectionPartnerServiceImpl extends ServiceImpl<AppInspectionPa
} else {
res.setLeadManName("");
}
/*根据工单表中的meetManId查询对应的 MeetMan*/
if (ObjectUtil.isNotNull(info.getMeetManId())) {
AdminUserDO meetMan = adminUserService.getById(info.getMeetManId());
if (ObjectUtil.isNotNull(meetMan)) {
res.setMeetManName(meetMan.getNickname());
res.setMeetManId(info.getMeetManId());
}
} else {
res.setMeetManName("");
}
res.setBuyUserName(Optional.ofNullable(buyUser.getNickname()).orElse(""));
res.setBuyUserPhone(buyUser.getMobile());
res.setCarNum(info.getCarNum());

View File

@ -92,4 +92,9 @@ public class InspectionInfoVo {
private Long leadManId;
@TableField(exist = false)
private String skuName;
/** 接车员id*/
private Long meetManId;
private String meetManName;
/** 是否接车*/
private String isMeetCar;
}