综合素质-综合素质申请审核代办和学生奖惩-先进班集体
This commit is contained in:
@@ -1,11 +1,13 @@
|
|||||||
package com.srs.flowable.listener.relieve;
|
package com.srs.flowable.listener.relieve;
|
||||||
|
|
||||||
|
import com.srs.common.utils.WeChatUtil;
|
||||||
import com.srs.common.utils.spring.SpringUtils;
|
import com.srs.common.utils.spring.SpringUtils;
|
||||||
import com.srs.flowable.mapper.LeaveMapper;
|
import com.srs.flowable.mapper.LeaveMapper;
|
||||||
import com.srs.flowable.mapper.RelieveMapper;
|
import com.srs.flowable.mapper.RelieveMapper;
|
||||||
import lombok.extern.slf4j.Slf4j;
|
import lombok.extern.slf4j.Slf4j;
|
||||||
import org.flowable.engine.delegate.DelegateExecution;
|
import org.flowable.engine.delegate.DelegateExecution;
|
||||||
import org.flowable.engine.delegate.ExecutionListener;
|
import org.flowable.engine.delegate.ExecutionListener;
|
||||||
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
import org.springframework.stereotype.Component;
|
import org.springframework.stereotype.Component;
|
||||||
|
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
@@ -17,6 +19,9 @@ import java.util.Map;
|
|||||||
@Slf4j
|
@Slf4j
|
||||||
public class StuCounselorListener implements ExecutionListener {
|
public class StuCounselorListener implements ExecutionListener {
|
||||||
|
|
||||||
|
@Autowired
|
||||||
|
private WeChatUtil weChatUtil;
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void notify(DelegateExecution delegateExecution) {
|
public void notify(DelegateExecution delegateExecution) {
|
||||||
RelieveMapper relieveMapper = (RelieveMapper) SpringUtils.getBean("relieveMapper");
|
RelieveMapper relieveMapper = (RelieveMapper) SpringUtils.getBean("relieveMapper");
|
||||||
@@ -31,6 +36,36 @@ public class StuCounselorListener implements ExecutionListener {
|
|||||||
delegateExecution.setVariable("deptId",map.get("deptId"));
|
delegateExecution.setVariable("deptId",map.get("deptId"));
|
||||||
|
|
||||||
// todo 企业微信推送消息
|
// todo 企业微信推送消息
|
||||||
|
/**
|
||||||
|
* 庞世斌
|
||||||
|
*/
|
||||||
|
try {
|
||||||
|
Long userId = map.get("userId");
|
||||||
|
|
||||||
|
// 使用 userId 查询对应的企业微信账号
|
||||||
|
String userName = relieveMapper.getUserNameByUserId(userId);
|
||||||
|
|
||||||
|
if (userName != null && !userName.isEmpty()) {
|
||||||
|
WeChatUtil weChatUtil = SpringUtils.getBean(WeChatUtil.class);
|
||||||
|
|
||||||
|
// 构造包含超链接的消息内容
|
||||||
|
String content = "您有一条新的学生违纪审批任务待处理," +
|
||||||
|
"<a href='http://zhxg.gxsdxy.cn/web/#/pages/Approval/index'>点此查看</a>";
|
||||||
|
|
||||||
|
// 发送企业微信消息
|
||||||
|
weChatUtil.sendTextMessage(userName, content);
|
||||||
|
log.info("✅ 已成功向学务干事(userName:{})发送企业微信审批通知。", userName);
|
||||||
|
|
||||||
|
} else {
|
||||||
|
// 如果找不到 userName,记录警告日志,但流程继续
|
||||||
|
log.warn("⚠ 找到了审批人(userId:{}), 但其对应的企业微信账号(userName)为空,无法发送通知。", userId);
|
||||||
|
}
|
||||||
|
} catch (Exception e) {
|
||||||
|
Long userId = map.get("userId"); // 确保日志里带上 userId
|
||||||
|
log.error("❌ 向学务干事(userId:{})发送企业微信通知时出现异常,但流程将继续。错误详情:", userId, e);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}else {
|
}else {
|
||||||
throw new RuntimeException("获取辅导员信息失败");
|
throw new RuntimeException("获取辅导员信息失败");
|
||||||
|
|||||||
@@ -11,6 +11,10 @@ public interface RelieveMapper {
|
|||||||
|
|
||||||
Map<String,Long> getCounselorInfo(Long stuUserId);
|
Map<String,Long> getCounselorInfo(Long stuUserId);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
String getUserNameByUserId ( long userId);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 查询学生解除处分申请
|
* 查询学生解除处分申请
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -113,6 +113,12 @@
|
|||||||
<include refid="selectRtStuDisciplinaryRelieveVo"/>
|
<include refid="selectRtStuDisciplinaryRelieveVo"/>
|
||||||
where relieve_id = #{relieveId}
|
where relieve_id = #{relieveId}
|
||||||
</select>
|
</select>
|
||||||
|
<!-- 根据userid获取到userName-->
|
||||||
|
<select id="getUserNameByUserId" parameterType="long" resultType="string">
|
||||||
|
SELECT user_name
|
||||||
|
FROM sys_user
|
||||||
|
WHERE user_id = #{userId}
|
||||||
|
</select>
|
||||||
|
|
||||||
|
|
||||||
</mapper>
|
</mapper>
|
||||||
Reference in New Issue
Block a user