Package com.exedosoft.plat.action.wf

Source Code of com.exedosoft.plat.action.wf.DOTwoBackTasNoSave

package com.exedosoft.plat.action.wf;

import com.exedosoft.plat.ExedoException;
import com.exedosoft.plat.MVCController;
import com.exedosoft.plat.action.DOAbstractAction;
import com.exedosoft.plat.bo.DOBO;
import com.exedosoft.plat.util.I18n;
import com.exedosoft.wf.WFException;
import com.exedosoft.wf.WFUtil;
import com.exedosoft.wf.wfi.NodeInstance;

public class DOTwoBackTasNoSave  extends DOAbstractAction{

  @Override
  public String excute() throws ExedoException {
    // TODO 自动生成方法存根
   
    DOBO ptNI = DOBO.getDOBOByName("do_wfi_nodeinstance");
    if (ptNI.getCorrInstance() == null) {
      this.setEchoValue(I18n.instance().get("当前工作流上下文丢失,请重新操作!"));
      return null;
    }
    NodeInstance ni = NodeInstance.getNodeInstanceByID(ptNI
        .getCorrInstance().getUid());
    WFUtil.refreshWFPara(ni.getProcessInstance());

    try {
      this.service.invokeUpdate();
    } catch (ExedoException e1) {
      this.setEchoValue(e1.getMessage());
      return NO_FORWARD;
    }
 
    try {
      NodeInstance nn = ni.returnBack();
      nn.returnBack();
     
    } catch (WFException e) {
      this.setEchoValue(e.getMessage());
      return NO_FORWARD;
    }
    return DEFAULT_FORWARD;

  }

}
TOP

Related Classes of com.exedosoft.plat.action.wf.DOTwoBackTasNoSave

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.