EquipmentRepairAlarmJob.java
29.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
package com.skua.modules.quartz;
import cn.hutool.core.date.DateUtil;
import cn.hutool.json.JSONUtil;
import com.alibaba.fastjson.JSON;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.skua.common.report.CustomReportUtil;
import com.skua.common.video.service.IHikVideoService;
import com.skua.core.context.SpringContextUtils;
import com.skua.core.service.ISequenceService;
import com.skua.core.util.ConvertUtils;
import com.skua.core.util.DateUtils;
import com.skua.core.util.chuanglan.HttpSenderMsg;
import com.skua.core.util.push.IPushService;
import com.skua.core.util.push.MessageEntity;
import com.skua.core.util.push.PushMessageFactory;
import com.skua.modules.alarmtmp.entity.AlarmMessageHistory;
import com.skua.modules.alarmtmp.entity.AlarmRecordHistory;
import com.skua.modules.alarmtmp.entity.AlarmRuleConfigPublicTab;
import com.skua.modules.alarmtmp.entity.AlarmRuleLevelConfig;
import com.skua.modules.alarmtmp.service.AlarmMessageHistoryService;
import com.skua.modules.alarmtmp.service.AlarmRecordHistoryService;
import com.skua.modules.alarmtmp.service.AlarmRuleLevelConfigService;
import com.skua.modules.alarmtmp.service.IAlarmRuleConfigPublicTabService;
import com.skua.modules.alarmtmp.vo.AlarmRuleConfigAndLevelVO;
import com.skua.modules.flow.business.service.FlowBusinessService;
import com.skua.modules.flow.business.service.IFlowService;
import com.skua.modules.flow.core.constant.ProcessConstant;
import com.skua.modules.flow.core.entity.BladeFlow;
import com.skua.modules.flow.core.utils.FlowUtil;
import com.skua.modules.flow.support.Kv;
import com.skua.modules.flow.utils.Func;
import com.skua.modules.system.entity.SysUser;
import com.skua.modules.system.service.ISysUserService;
import com.skua.modules.util.SysMessagePushService;
import lombok.extern.slf4j.Slf4j;
import org.apache.commons.lang3.StringUtils;
import org.flowable.engine.ProcessEngine;
import org.flowable.engine.ProcessEngines;
import org.flowable.engine.TaskService;
import org.flowable.identitylink.api.IdentityLink;
import org.flowable.identitylink.api.IdentityLinkType;
import org.flowable.task.service.impl.persistence.entity.TaskEntity;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.jdbc.core.JdbcTemplate;
import org.springframework.stereotype.Component;
import java.math.BigDecimal;
import java.math.MathContext;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.*;
import java.util.stream.Collectors;
/**
* <pre>
* 设备维修次数报警,这个报警规则触发方式采用维修流程接修时触发,不采用定时任务方式触发
* </pre>
* @author Li Yuanyuan
* @version V1.0, 2023年10月8日 上午10:53:42
*/
@Slf4j
@Component
public class EquipmentRepairAlarmJob {
@Autowired
private ISequenceService sequenceService;
@Autowired
private AlarmRecordHistoryService alarmRecordHistoryService;
@Autowired
private AlarmMessageHistoryService alarmMessageHistoryService;
@Autowired
private AlarmRuleLevelConfigService alarmRuleLevelConfigService;
@Autowired
private IFlowService flowService;
@Autowired
private FlowBusinessService flowBusinessService;
@Autowired
private ISysUserService sysUserService;
@Autowired
private TaskService taskService;
@Autowired
private IHikVideoService hikVideoService;
@Autowired
private IAlarmRuleConfigPublicTabService alarmRuleConfigPublicTabService;
private static final String prefix = "【金控数矿】在";
//private static final String prefix = "";
private static final String departNameTemplete = "${departName}";
private static final String suffix = ",请注意!";
public static void main(String[] args) {
String endTime = DateUtil.now();
String startTime = DateUtil.format(DateUtil.offsetDay(DateUtil.parse(endTime, "yyyy-MM-dd HH:mm:ss"), 0-7), "yyyy-MM-dd HH:mm:ss");
System.out.println(startTime+"====="+endTime);
}
public void execute(String equipmentId) {
try {
log.info("设备维修次数报警监测开始");
JdbcTemplate masterDB = (JdbcTemplate) SpringContextUtils.getBean("master");
//获取报警类别,已报警类别id为key,构造map对象
Map<String,AlarmRuleConfigPublicTab> alarmTypeDictMap = new HashMap<String,AlarmRuleConfigPublicTab>();
List<AlarmRuleConfigPublicTab> alarmRuleConfigPublicTabList = alarmRuleConfigPublicTabService.list();
alarmRuleConfigPublicTabList.forEach(v->{
alarmTypeDictMap.put(v.getId(), v);
});
//获取要报警指标
List<Map<String,Object>> paramList = masterDB.queryForList("select a.*,b.depart_name from alarm_custom_rule_config a left join sys_depart b on a.depart_id=b.id where a.alarm_rule_repository_id='1697233692390182914'");
//报警异常数据接收对象
List<AlarmRuleConfigAndLevelVO> excessList = new ArrayList<AlarmRuleConfigAndLevelVO>();
if(paramList!=null&¶mList.size()>0) {
for(Map<String,Object> paramMap : paramList) {
// TODO 待预警规则配置设计完成,完善监测指标获取及机构id获取逻辑
List<String> equipmentIdList = new ArrayList<String>();
String departId = "";
String departName = "";
//天数阈值
int standardDayParam = 0;
//次数阈值
int standardCountParam = 0;
String alarmRuleType = "";
String alarmRecommend = "";
//报警级别接收对象
AlarmRuleLevelConfig alarmRuleLevelConfig = null;
String alarmRuleJson = ConvertUtils.getString(paramMap.get("alarm_rule_json"));
departId = ConvertUtils.getString(paramMap.get("depart_id"));
departName = ConvertUtils.getString(paramMap.get("depart_name"));
String alarmIndexJson = ConvertUtils.getString(paramMap.get("alarm_index_json"));
String alarmRuleId = ConvertUtils.getString(paramMap.get("id"));
alarmRuleType = ConvertUtils.getString(paramMap.get("alarm_rule_type"));
alarmRecommend = ConvertUtils.getString(paramMap.get("alarm_recommend"));
String alarmRuleRepositoryTreepath = ConvertUtils.getString(paramMap.get("alarm_rule_repository_treepath"));
//获取报警规则id对应的报警级别
QueryWrapper<AlarmRuleLevelConfig> queryWrapper = new QueryWrapper<AlarmRuleLevelConfig>();
queryWrapper.eq("alarm_rule_id", alarmRuleId);
alarmRuleLevelConfig = alarmRuleLevelConfigService.getOne(queryWrapper);
List<Map> alarmIndexList = JSON.parseArray(alarmIndexJson, Map.class);
alarmIndexList.forEach(alarmIndexMap ->{
equipmentIdList.add(ConvertUtils.getString(alarmIndexMap.get("id")));
});
List<String> configParamList = CustomReportUtil.getDataKey(alarmRuleJson);
standardDayParam = ConvertUtils.getInt(configParamList.get(0));
standardCountParam = ConvertUtils.getInt(configParamList.get(1));
//判断当前设备id是否在要监测的设备列表中,如果在,则进行下一步报警判断,如果不在则直接结束任务
if(equipmentIdList.contains(equipmentId)) {
//查询设备报警次数
//获取开始时间,开始时间为当前时间往前推配置阈值天数
String endTime = DateUtil.now();
String startTime = DateUtil.format(DateUtil.offsetDay(DateUtil.parse(endTime, "yyyy-MM-dd"), 0-standardDayParam), "yyyy-MM-dd")+" 00:00:00";
//统计设备维修工单提交次数
String sql="select count(*) as repair_count,a.info_id,b.equipment_name from equipment_repair a inner join equipment_info b on a.info_id=b.id where a.info_id='"+equipmentId+"' and a.repair_date>='"+startTime+"' and a.repair_date<='"+endTime+"' and finish_flag in('ywx','yys','sbzx','wwwx') group by a.info_id,b.equipment_name";
List<Map<String, Object>> dataList = masterDB.queryForList(sql);
if(dataList!=null&&dataList.size()>0) {
Map<String,Object> dataMap = dataList.get(0);
int repairCount = ConvertUtils.getInt(dataMap.get("repair_count"),0);
String equipmentName = ConvertUtils.getString(dataMap.get("equipment_name"));
if(repairCount>=standardCountParam) {
//触发报警逻辑
String msg = equipmentName+"近"+standardDayParam+"天内维修工单"+repairCount+"次,大于维修报警阈值"+standardCountParam+"次";
//构造报警记录
AlarmRuleConfigAndLevelVO alarmRuleConfigAndLevelVO = new AlarmRuleConfigAndLevelVO();
StringBuffer msgBuffer = new StringBuffer();
msgBuffer.append(msg);
if(StringUtils.isNotBlank(msgBuffer.toString())) {
//存在监测报警数据
alarmRuleConfigAndLevelVO.setDepartId(departId);
alarmRuleConfigAndLevelVO.setAlarmRuleLevelConfig(alarmRuleLevelConfig);
alarmRuleConfigAndLevelVO.setAlarmParamCode(equipmentId);
alarmRuleConfigAndLevelVO.setAlarmParamName(equipmentName);
alarmRuleConfigAndLevelVO.setAlarmProgramCode(equipmentId);
alarmRuleConfigAndLevelVO.setDepartName(departName);
alarmRuleConfigAndLevelVO.setAlarmMsg(msgBuffer.toString());
alarmRuleConfigAndLevelVO.setAlarmRecommend(alarmRecommend);
alarmRuleConfigAndLevelVO.setEquipmentId(equipmentId);
//设置报警类型
alarmRuleConfigAndLevelVO.setAlarmRuleType(alarmRuleType);
AlarmRuleConfigPublicTab alarmRuleConfigPublicTab = alarmTypeDictMap.get(alarmRuleType);
if(alarmRuleConfigPublicTab!=null) {
String alarmTypeTreePath = alarmRuleConfigPublicTab.getTreePath();
String[] treeArray = alarmTypeTreePath.split(",");
alarmRuleConfigAndLevelVO.setAlarmRuleTopType(treeArray[0]);
alarmRuleConfigAndLevelVO.setAlarmRuleSecondType(treeArray[1]);
alarmRuleConfigAndLevelVO.setAlarmRuleTypeTreepath(alarmTypeTreePath);
}
//设备报警方案规则类别
alarmRuleConfigAndLevelVO.setAlarmCustomRuleId(alarmRuleId);
String[] treeArray = alarmRuleRepositoryTreepath.split(",");
alarmRuleConfigAndLevelVO.setAlarmCustomRuleTopType(treeArray[0]);
//预留二级类别
//alarmRuleConfigAndLevelVO.setAlarmCustomRuleSecondType(treeArray[1]);
alarmRuleConfigAndLevelVO.setAlarmCustomRuleType(treeArray[treeArray.length-1]);
alarmRuleConfigAndLevelVO.setAlarmCustomRuleTypeTreepath(alarmRuleRepositoryTreepath);
//构造报警指标数据json
List<Map<String,Object>> indexDataList = new ArrayList<Map<String,Object>>();
Map<String,Object> equipmentJsonMap = new HashMap<String,Object>();
equipmentJsonMap.put("indexCode", equipmentId);
equipmentJsonMap.put("indexName", equipmentName);
equipmentJsonMap.put("indexValue", repairCount);
indexDataList.add(equipmentJsonMap);
alarmRuleConfigAndLevelVO.setAlarmCustomIndexJsonData(JSONUtil.toJsonStr(indexDataList));
//获取设备视频报警信息
// TODO 视频对接放入下一版本优化
// List<Map<String, Object>> videoList = masterDB.queryForList("select a.id,b.video_camerauuid from equipment_tvideo a left join t_video b on a.tvideo_id=b.id where a.info_id='"+equipmentId+"' and a.tvideo_id is not null and a.tvideo_id!='' and b.video_camerauuid is not null and b.video_camerauuid!='' order by a.relation_level desc limit 1 ");
// if(videoList!=null&&videoList.size()>0) {
// Map<String, Object> videoMap = videoList.get(0);
// String videoCamerauuid = ConvertUtils.getString(videoMap.get("video_camerauuid"));
// String rtsp = hikVideoService.getRtsp(videoCamerauuid);
// if(StringUtils.isNotEmpty(rtsp)) {
// try {
// String detailSavePath = File.separator+"video"+File.separator+videoCamerauuid+".mp4";
// hikVideoService.getMp4FromMonitor(rtsp, videoCamerauuid,detailSavePath);
// alarmRuleConfigAndLevelVO.setImgPath(detailSavePath);
// } catch (Exception e) {
// alarmRuleConfigAndLevelVO.setImgPath("视频流解析异常,视频生成失败");
// }
// }else {
// alarmRuleConfigAndLevelVO.setImgPath("未获取到摄像头rtsp流");
// }
// }else {
// alarmRuleConfigAndLevelVO.setImgPath("未监测到设备与摄像头关联关系");
// }
excessList.add(alarmRuleConfigAndLevelVO);
}
}
}
}
}
}else {
log.info("报警规则初始参数未配置,请检查报警规则库,阈值报警规则");
return;
}
sendMessage(excessList);
log.info("在线监测预警(阈值预警)定时任务结束");
} catch (Exception e) {
e.printStackTrace();
log.error("基于模型运行计算的预警数据,数据同步定时任务异常" + e);
}
}
public static String handleDoubleValue(String doubleValue) {
if(doubleValue.contains("E")) {
MathContext mc = new MathContext(32);
BigDecimal bigNumber = new BigDecimal(doubleValue, mc);
BigDecimal setScale = bigNumber.setScale(4,BigDecimal.ROUND_HALF_UP);
return setScale.toString();
}else {
return ConvertUtils.getString(ConvertUtils.getDouble(doubleValue,0.0,4));
}
}
/**
* 判断是否需要发送短信和通知
*/
public void sendMessage(List<AlarmRuleConfigAndLevelVO> excessList) {
//超标报警
if (excessList != null && excessList.size() > 0) {
excessList.forEach(alarmRuleAndAlarmRuleLevelVO -> {
dealData(alarmRuleAndAlarmRuleLevelVO);
});
}
}
private void dealData(AlarmRuleConfigAndLevelVO alarmRuleAndAlarmRuleLevelVO) {
String date = DateUtils.getDate("yyyy-MM-dd HH:mm:ss");
SimpleDateFormat simpleDateFormat = new SimpleDateFormat("HH:mm");
SimpleDateFormat simpleDateFormat1 = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
//查询质量报警配置
String departId = alarmRuleAndAlarmRuleLevelVO.getDepartId();
AlarmRuleLevelConfig alarmRuleLevelConfig = alarmRuleAndAlarmRuleLevelVO.getAlarmRuleLevelConfig();
Double alarmValue = alarmRuleAndAlarmRuleLevelVO.getValue();
String alarmParamCode = alarmRuleAndAlarmRuleLevelVO.getAlarmProgramCode();
String alarmParamName = alarmRuleAndAlarmRuleLevelVO.getAlarmParamName();
String alarmRuleType = alarmRuleAndAlarmRuleLevelVO.getAlarmRuleType();
String alarmRuleLevelName = alarmRuleLevelConfig.getAlarmRuleLevelName();
String alarmRuleLevelConfigId = alarmRuleLevelConfig.getId();
String content = alarmRuleAndAlarmRuleLevelVO.getAlarmMsg();
String departName = departNameTemplete.replace("${departName}", alarmRuleAndAlarmRuleLevelVO.getDepartName());
//如果没有上条记录或者处理状态(0:未处理,1:已处理)为已处理
AlarmRecordHistory alarmRecordHistory = new AlarmRecordHistory();
String uuid = String.valueOf(sequenceService.nextId());
alarmRecordHistory.setId(uuid);
alarmRecordHistory.setAlarmParamCode(alarmParamCode);
alarmRecordHistory.setAlarmParamName(alarmParamName);
alarmRecordHistory.setAlarmWorkName(alarmParamName+"报警");
alarmRecordHistory.setAlarmRuleLevelName(alarmRuleLevelName);
alarmRecordHistory.setAlarmRuleLevelId(alarmRuleLevelConfigId);
String recordTime = DateUtil.now();
alarmRecordHistory.setRecordTime(DateUtil.parse(recordTime));
alarmRecordHistory.setAlarmParamUnit(alarmRuleAndAlarmRuleLevelVO.getAlarmParamUnit());
alarmRecordHistory.setDepartId(departId);
//alarmRecordHistory.setActualAvgValue(alarmValue.toString());
alarmRecordHistory.setHandleStatus(0);
alarmRecordHistory.setDelFlag(1);
//alarmRecordHistory.setAlarmDataSource("gyfz_mxyxgj");
alarmRecordHistory.setHandleMethon(alarmRuleAndAlarmRuleLevelVO.getAlarmRecommend());
//${start}采集数据${conent}已超标,请注意!
//alarmRecordHistory.setAlarmContent(prefix + recordTime + "时" + departName + "" + content + suffix);
alarmRecordHistory.setAlarmContent(content + suffix);
alarmRecordHistory.setCreateBy("system");//标记为系统创建
alarmRecordHistory.setHandleUser(alarmRuleLevelConfig.getAlarmWorkRecipient());
//流程添加定义ID
String processDefinitionId = flowBusinessService.getProcessDefinitionLastVersionId("productAlarmProcess");
alarmRecordHistory.setProcessDefinitionId(processDefinitionId);
//添加报警类型相关数据
alarmRecordHistory.setAlarmRuleType(alarmRuleType);
alarmRecordHistory.setAlarmRuleTopType(alarmRuleAndAlarmRuleLevelVO.getAlarmRuleTopType());
alarmRecordHistory.setAlarmRuleSecondType(alarmRuleAndAlarmRuleLevelVO.getAlarmRuleSecondType());
alarmRecordHistory.setAlarmRuleTypeTreepath(alarmRuleAndAlarmRuleLevelVO.getAlarmRuleTypeTreepath());
//添加报警分类相关数据
alarmRecordHistory.setAlarmCustomRuleId(alarmRuleAndAlarmRuleLevelVO.getAlarmCustomRuleId());
alarmRecordHistory.setAlarmCustomRuleTopType(alarmRuleAndAlarmRuleLevelVO.getAlarmCustomRuleTopType());
alarmRecordHistory.setAlarmCustomRuleSecondType(alarmRuleAndAlarmRuleLevelVO.getAlarmCustomRuleSecondType());
alarmRecordHistory.setAlarmCustomRuleType(alarmRuleAndAlarmRuleLevelVO.getAlarmCustomRuleType());
alarmRecordHistory.setAlarmCustomRuleTypeTreepath(alarmRuleAndAlarmRuleLevelVO.getAlarmCustomRuleTypeTreepath());
alarmRecordHistory.setAlarmCustomIndexJsonData(alarmRuleAndAlarmRuleLevelVO.getAlarmCustomIndexJsonData());
//设备类型,填充视频流地址
//alarmRecordHistory.setImgPath(alarmRuleAndAlarmRuleLevelVO.getImgPath());
//设备报警,存储设备id
alarmRecordHistory.setEquipmentId(alarmRuleAndAlarmRuleLevelVO.getEquipmentId());
alarmRecordHistoryService.save(alarmRecordHistory);
//判断是否需要发送系统通知 (内容跟报警记录信息相同)
if ("1".equals(alarmRuleLevelConfig.getIsSendNotice())) {
if (StringUtils.isNotBlank(alarmRuleLevelConfig.getAlarmNoticeRecipient())) {
//义乌报警存在特定参数逻辑,不适用产品原有消息推送流程
SysMessagePushService sysMessagePushService = (SysMessagePushService) SpringContextUtils.getBean("sysMessagePushService");
sysMessagePushService.pushAlarmRecordMsgNoProcess(alarmRecordHistory);
}
}
//判断是否需要自动发起工作流
if("1".equals(alarmRuleLevelConfig.getIsFlowWork())) {
if(StringUtils.isNotBlank(alarmRuleLevelConfig.getAlarmWorkRecipient())) {
//TODO 暂时注释掉流程发起逻辑
startProcessFlow("alarm_record_history","productAlarmProcess",Arrays.asList(alarmRuleLevelConfig.getAlarmWorkRecipient().split(",")),uuid,alarmRecordHistory);
}
}
//判断是否需要发送短信,1表示发送
if (alarmRuleLevelConfig.getIsSendSms().equals("1")) {
//判读是否在发送时间内
Date allowStartDate = null;
Date allowEndDate = null;
Date nowDate = null;
try {
allowEndDate = simpleDateFormat.parse(alarmRuleLevelConfig.getSmsAllowSendTime().split("-")[1]);
allowStartDate = simpleDateFormat.parse(alarmRuleLevelConfig.getSmsAllowSendTime().split("-")[0]);
nowDate = simpleDateFormat.parse(date.substring(11, 16));
} catch (ParseException e) {
e.printStackTrace();
}
//如果在发送时间内,则发送
if (isEffectiveDate(nowDate, allowStartDate, allowEndDate)) {
//判断是否满足报警频率,将两个时间转为毫秒
List<String> userList = new ArrayList<>();
String alarmSmsRecipient = alarmRuleLevelConfig.getAlarmSmsRecipient();
//获取需要发送短信的手机号
if (StringUtils.isNotBlank(alarmSmsRecipient)) {
String[] userArr = alarmSmsRecipient.split(",");
for (int i = 0; i < userArr.length; i++) {
userList.add(userArr[i]);
}
QueryWrapper<SysUser> sysUserQueryWrapper = new QueryWrapper<>();
sysUserQueryWrapper.in("id", userList);
List<SysUser> sysUserList = sysUserService.list(sysUserQueryWrapper);
//获取报警接收人的手机号
StringBuilder phoneStringBuilder = new StringBuilder();
for (int i = 0; i < sysUserList.size(); i++) {
phoneStringBuilder.append(",");
String phone1 = sysUserList.get(i).getPhone();
if (StringUtils.isNotBlank(phone1)) {
phoneStringBuilder.append(phone1);
//发送短信
HttpSenderMsg.sendMsg(prefix + recordTime + "时" + departName + "" + content + suffix, phone1);
log.info("短信发送成功手机号:" + phone1 + ",内容:" + content);
}
}
String phone = phoneStringBuilder.toString().replaceFirst(",", "");
if (StringUtils.isNotBlank(phone)) {
//将发送的短信保存到数据库
AlarmMessageHistory alarmMessageHistory = new AlarmMessageHistory();
alarmMessageHistory.setAlarmSendUser(alarmSmsRecipient);
alarmMessageHistory.setAlarmSendPhone(phone);
try {
alarmMessageHistory.setAlarmSendTime(simpleDateFormat1.parse(date));
} catch (ParseException e) {
e.printStackTrace();
}
alarmMessageHistory.setAlarmSendContent(prefix + recordTime + "时" + departName + "" + content + suffix);
alarmMessageHistory.setAlarmSendType("1");
alarmMessageHistory.setAlarmParamCode(alarmParamCode);
alarmMessageHistory.setAlarmParamName(alarmParamName);
alarmMessageHistory.setAlarmRuleLevelId(alarmRuleLevelConfigId);
alarmMessageHistory.setAlarmRuleType(alarmRuleType);
alarmMessageHistory.setAlarmParamUnit(alarmRuleAndAlarmRuleLevelVO.getAlarmParamUnit());
alarmMessageHistory.setDepartId(departId);
alarmMessageHistory.setActualAvgValue(ConvertUtils.getString(alarmValue));
alarmMessageHistoryService.save(alarmMessageHistory);
}
}
}
}
}
public static boolean isEffectiveDate(Date nowTime, Date startTime, Date endTime) {
if (nowTime.getTime() == startTime.getTime()
|| nowTime.getTime() == endTime.getTime()) {
return true;
}
Calendar date = Calendar.getInstance();
date.setTime(nowTime);
Calendar begin = Calendar.getInstance();
begin.setTime(startTime);
Calendar end = Calendar.getInstance();
end.setTime(endTime);
if (date.after(begin) && date.before(end)) {
return true;
} else {
return false;
}
}
public void startProcessFlow(String businessTable,String flowKey,List<String> candidateUserList,String bussinessId,AlarmRecordHistory alarmRecordHistory) {
// 启动流程
Kv variables = Kv.create().set(ProcessConstant.TASK_VARIABLE_CREATE_USER, "");
String processDefinitionId = flowBusinessService.getProcessDefinitionLastVersionId(flowKey);
alarmRecordHistory.setProcessDefinitionId(processDefinitionId);
BladeFlow flow = flowService.startProcessInstanceById(processDefinitionId, FlowUtil.getBusinessKey(businessTable, String.valueOf(bussinessId)), variables);
if (Func.isNotEmpty(flow)) {
log.debug("流程已启动,流程ID: " + flow.getProcessInstanceId());
//动态添加下一节点候选用户
if(candidateUserList!=null&&candidateUserList.size()>0) {
//获取当前活动任务
TaskEntity taskEntity=(TaskEntity)taskService.createTaskQuery().processInstanceId(flow.getProcessInstanceId()).singleResult();
String taskId = taskEntity.getId();
ProcessEngine processEngine = ProcessEngines.getDefaultProcessEngine();
//获取当前结点审批人 考虑到有多个审批人的情况 需要先查询出所有的审批人 所以涉及到identityLink
List<String> userIds = processEngine.getTaskService().getIdentityLinksForTask(taskId).stream().map(IdentityLink::getUserId).distinct().collect(Collectors.toList());
//删除identityLink中的用户关系
for (String userId : userIds) {
taskService.deleteUserIdentityLink(taskId, userId, IdentityLinkType.CANDIDATE);
}
//清空task中的assignee
taskService.unclaim(taskId);
//当前节点审核人列表 清空申请人
userIds = new ArrayList<>();
//当前节点审核人列表 追加流转人
userIds.addAll(candidateUserList);
//给当前任务节点分配审核人
for (String userId : userIds) {
taskService.addCandidateUser(taskId, "taskUser_"+userId);
}
//工单消息推送
if (userIds != null && userIds.size() > 0) {
List<String> userCidList = new ArrayList<>();
userCidList = sysUserService.getCidByUserIds(String.join(",", userIds));
//获取用户列表后做消息推送
MessageEntity messageEntity = new MessageEntity();
messageEntity.setMessageTitle("流程审批消息");
messageEntity.setMessageBody("您有一条" + alarmRecordHistory.getAlarmWorkName() + "待审批,请及时处理");
messageEntity.setReceiveUser(userIds);
messageEntity.setReceiveUserCid(userCidList);
messageEntity.setSendUser("系统");
messageEntity.setForwardTag("todo");
IPushService appPushService = PushMessageFactory.getPushService("MOB");
IPushService webPushService = PushMessageFactory.getPushService("WEB");
appPushService.pushMessage(messageEntity);
webPushService.pushMessage(messageEntity);
}
}
//返回流程id写入leave
alarmRecordHistory.setProcessInstanceId(flow.getProcessInstanceId());
alarmRecordHistoryService.saveOrUpdate(alarmRecordHistory);
log.debug("流程发起成功");
} else {
log.debug("流程发起失败");
}
}
}