This commit is contained in:
@jyuhsin
2025-05-28 14:33:34 +08:00
parent afc1508d55
commit 02a40ba40a
6 changed files with 7 additions and 7 deletions
@@ -374,7 +374,7 @@ public class TheRapyRecuperationAuditController {
content = "【智慧工会】%s老师您好,您报名的%s线路已组团成功,请按约定出行。"
.formatted(user.getUsername(), theRapyRecuperationLine.getLineName());
}
msgApi.sendTextMsg(content,user.getLoginname());
//msgApi.sendMsg(content,user.getLoginname());
}
@@ -157,7 +157,7 @@ public class TheRapyRecuperationEnrollSchoolAuditController {
enrollService.update(unionSelect);
TheRapyRecuperationLine line = enrollService.dao().fetch(TheRapyRecuperationLine.class, unionSelect.getLineId());
Sys_user user = enrollService.dao().fetch(Sys_user.class, unionSelect.getSelectUserId());
msgApi.sendTextMsg("您备案的疗休养【"+line.getLineName()+"】校工会退回,请修改后在提交审核!", user.getLoginname());
//msgApi.sendTextMsg("您备案的疗休养【"+line.getLineName()+"】校工会退回,请修改后在提交审核!", user.getLoginname());
return Result.success();
}
}
@@ -157,7 +157,7 @@ public class TheRapyRecuperationEnrollUnionAuditController {
enrollService.update(unionSelect);
TheRapyRecuperationLine line = enrollService.dao().fetch(TheRapyRecuperationLine.class, unionSelect.getLineId());
Sys_user user = enrollService.dao().fetch(Sys_user.class, unionSelect.getSelectUserId());
msgApi.sendTextMsg("您备案的疗休养【"+line.getLineName()+"】分工会退回,请修改后在提交审核!", user.getLoginname());
//msgApi.sendTextMsg("您备案的疗休养【"+line.getLineName()+"】分工会退回,请修改后在提交审核!", user.getLoginname());
return Result.success();
}
@@ -165,7 +165,7 @@ public class TheRapyRecuperationEnrollUnitLeaderAuditController {
enrollService.update(unionSelect);
TheRapyRecuperationLine line = enrollService.dao().fetch(TheRapyRecuperationLine.class, unionSelect.getLineId());
Sys_user user = enrollService.dao().fetch(Sys_user.class, unionSelect.getSelectUserId());
msgApi.sendTextMsg("您备案的疗休养【"+line.getLineName()+"】单位领导退回,请修改后在提交审核!", user.getLoginname());
//msgApi.sendTextMsg("您备案的疗休养【"+line.getLineName()+"】单位领导退回,请修改后在提交审核!", user.getLoginname());
return Result.success();
}
@@ -222,7 +222,7 @@ public class TheRapyRecuperationLineStatisticsController {
line.getLineName(),
DateUtil.format(unionSelect.getPlayStartTime(), "yyyy-MM-dd")
);
msgApi.sendTextMsg(content, item.getLoginName());
//msgApi.sendTextMsg(content, item.getLoginName());
});
}
return null;
@@ -272,7 +272,7 @@ public class TheRapyRecuperationLineStatisticsController {
line.getLineName(),
DateUtil.format(unionSelect.getPlayStartTime(), "yyyy-MM-dd")
);
msgApi.sendTextMsg(content, item.getLoginName());
//msgApi.sendTextMsg(content, item.getLoginName());
});
if(!type) {
@@ -138,6 +138,6 @@ public class TheRapyRecuperationAuditServiceImpl extends ViServiceImpl<Audit> im
content = "【智慧工会】%s老师您好,您报名的%s线路已组团成功,请按约定出行。"
.formatted(user.getUsername(), theRapyRecuperationLine.getLineName());
}
msgApi.sendTextMsg(content,user.getLoginname());
//msgApi.sendTextMsg(content,user.getLoginname());
}
}