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
package com.vci.server.workflow.event;
 
import org.jbpm.api.listener.EventListenerExecution;
 
import com.vci.corba.omd.data.BusinessObject;
import com.vci.corba.omd.lcm.TransitionVO;
import com.vci.server.base.utility.ServerServiceProvider;
 
 
/// 返回编制中状态
public class ReturnEditingStatus 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 = getTargetStatus();//"Editing";
        
        for (int i = 0; i < bos.length; i++) {
            TransitionVO targetTVO = getTransitionVO(lcName, 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);
    }
}