|
|
@@ -200,12 +200,10 @@ public class TraineeBusiness {
|
|
|
String cardData = getRoomCardData(kfOrderVo);
|
|
|
ycTraineeVo.setRoomCardData(cardData);
|
|
|
// 发送报到短信(有房间)
|
|
|
- // TODO [2026/4/28][luoyibo][P0-当日内完成]: 因调试需要被注释,需要在正式环境中打开
|
|
|
- // selfBusiness.sendSmsHasRoom(ycTraineeVo.getMobilePhone(), ycTraineeVo.getUserXm(), remoteDeptVo.getDeptName(), roomCode);
|
|
|
+ selfBusiness.sendSmsHasRoom(ycTraineeVo.getMobilePhone(), ycTraineeVo.getUserXm(), remoteDeptVo.getDeptName(), roomCode);
|
|
|
} else {
|
|
|
// 发送短信,暂无房间
|
|
|
- // TODO [2026/4/28][luoyibo][P0-当日内完成]: 因调试需要被注释,需要在正式环境中打开
|
|
|
- // selfBusiness.sendSmsNoRoom(ycTraineeVo.getMobilePhone(), ycTraineeVo.getUserXm(), remoteDeptVo.getDeptName());
|
|
|
+ selfBusiness.sendSmsNoRoom(ycTraineeVo.getMobilePhone(), ycTraineeVo.getUserXm(), remoteDeptVo.getDeptName());
|
|
|
}
|
|
|
setCheckInfoStatus(bo, ycTraineeVo);
|
|
|
// 培训班级信息
|
|
|
@@ -216,8 +214,7 @@ public class TraineeBusiness {
|
|
|
BeanUtil.copyProperties(ycTraineeVo, traineeVo);
|
|
|
|
|
|
// 发送报到的kafka消息
|
|
|
- // TODO [2026/4/28][luoyibo][P0-当日内完成]: 因调试需要被注释,需要在正式环境中打开
|
|
|
- // sendCheckInMessageToKafka(bo);
|
|
|
+ sendCheckInMessageToKafka(bo);
|
|
|
//写发卡记录表
|
|
|
//insertCardData(ycTraineeVo);
|
|
|
return R.ok();
|