懒羊羊
2023-11-14 8286c62256f23bc2367a6729c0f46f84215e380b
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
package cn.stylefeng.guns.workflow.modular.controller;
 
import cn.stylefeng.guns.base.pojo.page.LayuiPageInfo;
import cn.stylefeng.guns.workflow.modular.controller.base.ActBaseController;
import cn.stylefeng.guns.workflow.core.util.TimeCalcUtil;
import cn.stylefeng.guns.workflow.modular.model.params.TaskParam;
import cn.stylefeng.guns.workflow.modular.service.HistoryProcessService;
import cn.stylefeng.roses.core.util.ToolUtil;
import cn.stylefeng.roses.kernel.model.exception.ServiceException;
import cn.stylefeng.roses.kernel.model.response.ResponseData;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.ResponseBody;
 
import java.util.List;
import java.util.Map;
 
 
/**
 * 历史流程控制器
 *
 * @author fengshuonan
 * @Date 2019-08-19 17:27:26
 */
@Controller
@RequestMapping("/historyProc")
public class HistoryProcessController extends ActBaseController {
 
    private String PREFIX = "/modular/act/historyProc";
 
    @Autowired
    private HistoryProcessService historyProcessService;
 
    /**
     * 跳转到主页面
     *
     * @author fengshuonan
     * @Date 2019-08-19
     */
    @RequestMapping("")
    public String index() {
        return PREFIX + "/historyProc.html";
    }
 
    /**
     * 流程历史查询列表
     *
     * @author fengshuonan
     * @Date 2019-08-19
     */
    @ResponseBody
    @RequestMapping("/list")
    public LayuiPageInfo list(TaskParam procinstParam) {
 
        LayuiPageInfo pageBySpec = this.historyProcessService.findPageBySpec(procinstParam);
 
        if (ToolUtil.isNotEmpty(pageBySpec.getData()) && pageBySpec.getData().size() > 0) {
            List<Map<String, Object>> maps = pageBySpec.getData();
 
            for (int i = 0; i < maps.size(); i++) {
                Long ztime = Long.parseLong(maps.get(i).get("duration_").toString());
 
                //用时
                maps.get(i).put("ztime", TimeCalcUtil.calc(ztime));
 
                //流程申请人
                maps.get(i).put("initator", getInitiator((String) maps.get(i).get("proc_inst_id_")));
            }
        }
 
        return pageBySpec;
    }
 
    /**
     * 删除
     *
     * @author fengshuonan
     * @Date 2019-08-28 15:46
     */
    @RequestMapping(value = "/delete")
    @ResponseBody
    public ResponseData delete(@RequestParam("procinstId") String procinstId) {
 
        if (ToolUtil.isEmpty(procinstId)) {
            throw new ServiceException(500, "procinstId不能为空");
        }
 
        deleteHiProcessInstance(procinstId);
 
        return ResponseData.success();
    }
 
}