|
@@ -0,0 +1,113 @@
|
|
|
+package com.jeeplus.flowable.service;
|
|
|
+
|
|
|
+import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
|
|
|
+import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
|
|
+import com.jeeplus.core.domain.BaseEntity;
|
|
|
+import com.jeeplus.flowable.mapper.MyNoticeListMapper;
|
|
|
+import com.jeeplus.flowable.model.Flow;
|
|
|
+import com.jeeplus.flowable.model.MyNoticeList;
|
|
|
+import com.jeeplus.flowable.utils.ProcessDefCache;
|
|
|
+import com.jeeplus.flowable.vo.NoticeVo;
|
|
|
+import com.jeeplus.flowable.vo.TaskVo;
|
|
|
+import com.jeeplus.sys.service.dto.UserDTO;
|
|
|
+import com.jeeplus.sys.utils.StringUtils;
|
|
|
+import com.jeeplus.sys.utils.UserUtils;
|
|
|
+import com.baomidou.mybatisplus.core.toolkit.CollectionUtils;
|
|
|
+import org.flowable.engine.TaskService;
|
|
|
+import org.flowable.task.api.Task;
|
|
|
+import org.springframework.beans.factory.annotation.Autowired;
|
|
|
+import org.springframework.stereotype.Service;
|
|
|
+import org.springframework.transaction.annotation.Transactional;
|
|
|
+
|
|
|
+import javax.annotation.Resource;
|
|
|
+import java.text.SimpleDateFormat;
|
|
|
+import java.util.*;
|
|
|
+
|
|
|
+@Service
|
|
|
+@Transactional
|
|
|
+public class MyNoticeService {
|
|
|
+
|
|
|
+ @Resource
|
|
|
+ private FlowProcessService flowProcessService;
|
|
|
+
|
|
|
+ @Resource
|
|
|
+ private MyNoticeListMapper mapper;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 获取待办任务列表
|
|
|
+ *
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ public Page<MyNoticeList> noticeList(Page<MyNoticeList> page, String type){
|
|
|
+ // 获取当前登录人名称查询出未查看通知列表
|
|
|
+ String userName = UserUtils.getCurrentUserDTO ().getName ();
|
|
|
+ LambdaQueryWrapper<MyNoticeList> wrapper = new LambdaQueryWrapper<MyNoticeList>();
|
|
|
+ wrapper.eq(MyNoticeList::getNoticeName, userName).orderByDesc(BaseEntity::getCreateDate);
|
|
|
+ if (StringUtils.isNotEmpty(type)) {
|
|
|
+ wrapper.eq(MyNoticeList::getType, Integer.parseInt(type));
|
|
|
+ }
|
|
|
+ Page<MyNoticeList> listPage = mapper.selectPage(page, wrapper);
|
|
|
+ if (CollectionUtils.isNotEmpty(listPage.getRecords())) {
|
|
|
+ for (MyNoticeList notice : listPage.getRecords()) {
|
|
|
+ notice.setType("0".equals(notice.getType())? "未读":"已读");
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return listPage;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String add(String taskId, String title, String defId, String taskName, String createName, String createDate, String noticeName) throws Exception{
|
|
|
+ MyNoticeList notice = new MyNoticeList();
|
|
|
+ //是否已保存
|
|
|
+ LambdaQueryWrapper<MyNoticeList> wrapper = new LambdaQueryWrapper<>();
|
|
|
+ wrapper.eq(BaseEntity::getDelFlag, 0).eq(MyNoticeList::getTaskId, taskId).eq(MyNoticeList::getNoticeName, noticeName).eq(MyNoticeList::getType, 0);
|
|
|
+ MyNoticeList one = mapper.selectOne(wrapper);
|
|
|
+ if (one != null) {
|
|
|
+ one.setRepetitionCount(one.getRepetitionCount() + 1);
|
|
|
+ mapper.updateById(one);
|
|
|
+ }
|
|
|
+ //获取当前登录人信息
|
|
|
+ UserDTO userDTO = UserUtils.getCurrentUserDTO();
|
|
|
+ //生成id
|
|
|
+ String id = UUID.randomUUID().toString().replace("-", "");
|
|
|
+ notice.setId(id);
|
|
|
+ notice.setCreateBy(userDTO.getId());
|
|
|
+ notice.setCreateDate(new Date());
|
|
|
+ notice.setUpdateBy(userDTO.getId());
|
|
|
+ notice.setUpdateDate(new Date());
|
|
|
+ notice.setDelFlag(0);
|
|
|
+ notice.setTaskId(taskId);
|
|
|
+ notice.setTitle(title);
|
|
|
+ notice.setDefId(defId);
|
|
|
+ if (StringUtils.isNotEmpty(taskName)) {
|
|
|
+ notice.setTaskName(taskName);
|
|
|
+ } else {
|
|
|
+ Page<Map> page = flowProcessService.processList(new Page<Map>(), "");
|
|
|
+ List<Map> records = page.getRecords();
|
|
|
+ Map resultMap = new HashMap();
|
|
|
+ for (Map<String, String> map : records) {
|
|
|
+ if(defId.equals(map.get("id"))){
|
|
|
+ notice.setTaskName(map.get("name"));
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ notice.setLink("结束");
|
|
|
+ notice.setCreateUser(createName);
|
|
|
+ // 创建时间格式化处理
|
|
|
+ SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
|
|
|
+ notice.setCreateTime(format.parse(createDate));
|
|
|
+ notice.setNoticeName(noticeName);
|
|
|
+ notice.setType("0");
|
|
|
+ notice.setRepetitionCount(1);
|
|
|
+ mapper.insert(notice);
|
|
|
+ return "操作成功";
|
|
|
+ }
|
|
|
+
|
|
|
+ public String update(String taskId, String noticeId) {
|
|
|
+ LambdaQueryWrapper<MyNoticeList> wrapper = new LambdaQueryWrapper<>();
|
|
|
+ wrapper.eq(BaseEntity::getDelFlag, 0).eq(MyNoticeList::getTaskId, taskId).eq(MyNoticeList::getNoticeName, noticeId).eq(MyNoticeList::getType, 0);
|
|
|
+ MyNoticeList one = mapper.selectOne(wrapper);
|
|
|
+ one.setType("1");
|
|
|
+ mapper.updateById(one);
|
|
|
+ return "操作成功";
|
|
|
+ }
|
|
|
+}
|