|
@@ -2,12 +2,7 @@ package cn.com.taiji.zhongxiao.service;
|
|
|
|
|
|
import java.sql.ResultSet;
|
|
|
import java.sql.SQLException;
|
|
|
-import java.util.ArrayList;
|
|
|
-import java.util.Arrays;
|
|
|
-import java.util.HashMap;
|
|
|
-import java.util.List;
|
|
|
-import java.util.Map;
|
|
|
-import java.util.Set;
|
|
|
+import java.util.*;
|
|
|
|
|
|
import javax.inject.Inject;
|
|
|
import javax.persistence.criteria.CriteriaBuilder;
|
|
@@ -16,7 +11,11 @@ import javax.persistence.criteria.CriteriaQuery;
|
|
|
import javax.persistence.criteria.Join;
|
|
|
import javax.persistence.criteria.Predicate;
|
|
|
import javax.persistence.criteria.Root;
|
|
|
+import javax.servlet.http.HttpServletRequest;
|
|
|
|
|
|
+import cn.hutool.core.date.DateField;
|
|
|
+import cn.hutool.core.date.DateTime;
|
|
|
+import cn.hutool.core.date.DateUtil;
|
|
|
import org.activiti.engine.HistoryService;
|
|
|
import org.activiti.engine.TaskService;
|
|
|
import org.activiti.engine.history.HistoricTaskInstance;
|
|
@@ -24,6 +23,7 @@ import org.activiti.engine.task.Attachment;
|
|
|
import org.activiti.engine.task.Comment;
|
|
|
import org.springframework.beans.BeanUtils;
|
|
|
import org.springframework.beans.factory.annotation.Value;
|
|
|
+import org.springframework.data.domain.Example;
|
|
|
import org.springframework.data.domain.Page;
|
|
|
import org.springframework.data.domain.PageRequest;
|
|
|
import org.springframework.data.domain.Sort;
|
|
@@ -33,6 +33,7 @@ import org.springframework.data.jpa.domain.Specification;
|
|
|
import org.springframework.jdbc.core.JdbcTemplate;
|
|
|
import org.springframework.jdbc.core.RowMapper;
|
|
|
import org.springframework.stereotype.Service;
|
|
|
+import org.springframework.transaction.annotation.Propagation;
|
|
|
import org.springframework.transaction.annotation.Transactional;
|
|
|
|
|
|
import cn.com.taiji.sys.domain.Dept;
|
|
@@ -57,6 +58,8 @@ import cn.com.taiji.zhongxiao.dto.TshareApplyDtoForWord;
|
|
|
import cn.com.taiji.zhongxiao.dto.VtasklistDto;
|
|
|
import cn.com.taiji.zhongxiao.web.BaseAction;
|
|
|
|
|
|
+import static cn.com.taiji.zhongxiao.web.TshareApplyController.modelType;
|
|
|
+
|
|
|
@Service
|
|
|
@Transactional
|
|
|
public class TshareApplyService {
|
|
@@ -147,6 +150,48 @@ public class TshareApplyService {
|
|
|
tshareApplyRepository.saveAndFlush(tshareApply);
|
|
|
}
|
|
|
|
|
|
+ @Inject
|
|
|
+ LoginfoService loginfoService;
|
|
|
+ // 老代码很多都没有事务控制???
|
|
|
+ @Transactional(propagation = Propagation.REQUIRED)
|
|
|
+ public void disableShareApply(HttpServletRequest request, User userInfo, String busId) {
|
|
|
+ Map<String, Object> map = new HashMap();
|
|
|
+ for(String id :busId.split(";")) {
|
|
|
+ TshareApplyDto tshareApply = this.byone(id);
|
|
|
+ // 改成过期已撤销
|
|
|
+ tshareApply.setActualize("3");
|
|
|
+ this.TshareApplysave(tshareApply);
|
|
|
+ //记录模块操作日志
|
|
|
+ loginfoService.logDealInfo("2", modelType, "共享申请派单", "t_shareapply", id,ToolUtil.getIpAddr(request), request.getRequestURI(), userInfo);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ @Transactional(propagation = Propagation.REQUIRED)
|
|
|
+ public void expireShareApply() {
|
|
|
+ List<TshareApply> list = tshareApplyRepository.findAll(new Specification<TshareApply>() {
|
|
|
+ @Override
|
|
|
+ public Predicate toPredicate(Root<TshareApply> root, CriteriaQuery<?> query, CriteriaBuilder cb) {
|
|
|
+ List<Predicate> pl = new ArrayList<Predicate>();
|
|
|
+ pl.add(cb.equal(root.<String>get("state"), "2"));
|
|
|
+ pl.add(cb.equal(root.<String>get("actualize"), "1"));
|
|
|
+ pl.add(cb.isNull(root.get("isrevoke")));
|
|
|
+ return cb.and(pl.toArray(new Predicate[0]));
|
|
|
+ }
|
|
|
+ });
|
|
|
+ Date now = new Date();
|
|
|
+ list.forEach(apply -> {
|
|
|
+ DateTime time = DateUtil.parse(apply.getActualizetime(), "yyyy-MM-dd HH:mm:ss");
|
|
|
+ time = time.offset(DateField.YEAR, Integer.valueOf(apply.getSharingcycle().trim()));
|
|
|
+ if (time.isBeforeOrEquals(now)) {
|
|
|
+ TshareApplyDto dto = this.byone(apply.getId());
|
|
|
+ // 改成过期已撤销
|
|
|
+ dto.setActualize("2");
|
|
|
+ this.TshareApplysave(dto);
|
|
|
+ }
|
|
|
+ });
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
// 获取资源共享申请列表
|
|
|
public Pagination findtshareApplysave(final TshareApplyDto dto, Pagination pag, final User userInfo,
|
|
|
final String type, Map<String, Object> searchParameters) {
|
|
@@ -265,9 +310,8 @@ public class TshareApplyService {
|
|
|
}
|
|
|
else {
|
|
|
|
|
|
- if (!"3".equals(type)) {//详情
|
|
|
+ if (!"3".equals(type) && !"1".equals(type)) {//详情
|
|
|
pl.add(cb.isNull(root.get("isrevoke")));
|
|
|
-
|
|
|
}
|
|
|
}
|
|
|
if (dto.getTaskname() != null && !"".equals(dto.getTaskname())) {
|
|
@@ -321,8 +365,7 @@ public class TshareApplyService {
|
|
|
if (dto.getHitchStatus() == 1) {
|
|
|
pl.add((cb.equal(root.get("hitchStatus"), dto.getHitchStatus())));
|
|
|
} else {
|
|
|
- pl.add(cb.or(cb.equal(join.get("hitchStatus"), dto.getHitchStatus()),
|
|
|
- cb.isNull(join.get("hitchStatus"))));
|
|
|
+ pl.add(cb.or(cb.equal(join.get("hitchStatus"), dto.getHitchStatus()), cb.isNull(join.get("hitchStatus"))));
|
|
|
}
|
|
|
}
|
|
|
if (dto.getActualize() != null && !"".equals(dto.getActualize())) {
|