ludc
2025-01-16 986aa62ed00bee39363bab41b4eeb8259d446efd
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
package com.vci.server.workflow.event;
 
import java.util.HashMap;
import java.util.Map;
 
import org.jbpm.api.listener.EventListenerExecution;
 
import com.vci.corba.omd.data.BusinessObject;
import com.vci.corba.omd.lcm.LifeCycle;
import com.vci.corba.omd.lcm.LifeCycleServicePrx;
import com.vci.corba.omd.lcm.TransitionVO;
import com.vci.server.base.utility.ServerServiceProvider;
 
 
/// 返回编制中状态
public class ReturnInitialStatus extends TransferStatus {
 
    private static final long serialVersionUID = -8416047141287575412L;
    
    /**
     * 返回是否是流程终止而触发当前事件
     * @param e
     * @return
     */
    protected boolean isIntermitting(EventListenerExecution e){
        boolean res = false;
        String intermit = (String) e.getProcessInstance().getVariable("intermit");
        // 平台规则:当全仅当 intermit 的值等于true时,才代表是执行‘流程中止’
        if(intermit != null && !"".equals(intermit) && "true".equals(intermit)){
            res = true;
        }
        return res;
    }
    
    @Override
    public void doEvent(EventListenerExecution e) throws Exception {
        // 普通跃迁事件,当且仅当是非‘流程终止’时才执行
        if(isIntermitting(e)){
            doEventDetail(e);
        }
    }
    
    
    protected void doEventDetail(EventListenerExecution e) throws Exception{
        // 设置目标跃迁状态
        setTargetStatus("Editing");
        
        // 取出流程里关联的数据
        BusinessObject[] bos = super.getBusinessObjects();
        // 取出生命周期名称
        String lcName = bos[0].lctId;
        // 构建跃迁数据
        TransitionVO[] vos = new TransitionVO[bos.length];
        String[] releaseStatus = new String[bos.length];
        
        String tagStatus = "Editing";
        
        LifeCycleServicePrx lcService = ServerServiceProvider.getOMDService().getLifeCycleService();
        LifeCycle[] lcs = lcService.getLifeCycles();
        
        Map<String, LifeCycle> mapLC = new HashMap<String, LifeCycle>();
        for (LifeCycle lc : lcs) {
            mapLC.put(lc.id, lc);
        }
        
        for (int i = 0; i < bos.length; i++) {
            LifeCycle lc = mapLC.get(bos[i].lctId);
            if(lc == null){
                throw new IllegalArgumentException("对象生命周期模型定义异常,没找到对应的生命周期模型定义信息");
            }
            
            tagStatus = lc.startState;
            
            TransitionVO targetTVO = getTransitionVO(lc, bos[i].lcStatus, tagStatus);
            if(targetTVO == null){
                throw new IllegalArgumentException("跃迁业务对象生命周期状态异常:'targetStatus' 的参数值 '" + tagStatus + "' 无效,在生命周期 '" + lcName + "' 里不存在。" +
                        " 或者是生命周期里从 '" + bos[i].lcStatus + "' 到 '" + tagStatus + "' 之间的连线不存在,无法进行跃迁!");
            }
            vos[i] = targetTVO;
            // 设置发发布状态值,此事件里值为空(即,不发布,仅做跃迁
            releaseStatus[i] = "";
        }
        
        // 执行跃迁及发布
        ServerServiceProvider.getBOFService().batchTransferBusinessObjectAndRelease(bos, vos, releaseStatus);
    }
    
    
    /**
     * 查询生命周期节点
     * @param lcName 生命周期名称
     * @param lcDestStatus 状态
     * @return
     */
    protected TransitionVO getTransitionVO(LifeCycle lc, String fromStatus,String toStatus) {
        if (lc == null || fromStatus == null || toStatus == null) {
            return null;
        }
        
        fromStatus = fromStatus.trim();
        toStatus = toStatus.trim();
        
        for (int i = 0; i < lc.routes.length; ++i) {
            TransitionVO route = lc.routes[i];
            if (route.destination.equals(toStatus) && route.source.equals(fromStatus)){
                return route;
            }
        }
 
        return null;
    }
}