using System;
using System.Threading;
using System.Collections;
using System.Data;
using BP.DA;
using BP.DTS;
using BP.En;
using BP.Web;
using BP.Sys;
using BP.WF;
namespace BP.MES
{
///
/// 报销流程001
/// 此类库必须放入到 BP.*.dll 才能被解析发射出来。
///
public class F001: BP.WF.FlowEventBase
{
#region 属性.
///
/// 重写流程标记
///
public override string FlowMark
{
get { return ",001,"; }
}
#endregion 属性.
#region 构造.
///
/// 报销流程事件
///
public F189()
{
}
#endregion 属性.
#region 发送事件.
///
/// 重写发送前事件
///
///
public override string SendWhen()
{
//相关的变量,
// 当前的节点, 其他的变量请从 this.HisNode .
int nodeID = this.HisNode.NodeID; // int类型的ID.
string nodeName = this.HisNode.Name; // 当前节点名称.
switch (nodeID)
{
case 18901: //当是第1个节点的时候.
// throw new Exception("不符合流程发送条件,阻止向下运行.");
//this.JumpToEmps = "zhangsan,lisi";
//this.JumpToNode = new Node(102);
//this.WorkID;
return "SendWhen事件已经执行成功。";
default:
break;
}
return null;
}
#endregion 发送事件.
///
/// 发送成功事件,发送成功时,把流程的待办写入其他系统里.
///
/// 返回执行结果,如果返回null就不提示。
public override string SendSuccess()
{
try
{
// 组织必要的变量.
Int64 workid = this.WorkID; // 工作id.w
string flowNo = this.HisNode.FK_Flow; // 流程编号.
int currNodeID = this.SendReturnObjs.VarCurrNodeID; //当前节点id
int toNodeID = this.SendReturnObjs.VarToNodeID; // 到达节点id.
string toNodeName = this.SendReturnObjs.VarToNodeName; // 到达节点名称。
string acceptersID = this.SendReturnObjs.VarAcceptersID; // 接受人员id, 多个人员会用 逗号分看 ,比如 zhangsan,lisi。
string acceptersName = this.SendReturnObjs.VarAcceptersName; // 接受人员名称,多个人员会用逗号分开比如:张三,李四.
//执行向其他系统写入待办.
/*
* 在这里需要编写你的业务逻辑,根据上面组织的变量.
*/
if (this.HisNode.NodeID == 102)
{
/*根据不同的节点,执行不同的业务逻辑*/
}
//返回.
return base.SendSuccess();
}
catch(Exception ex)
{
return base.SendSuccess();
// throw new Exception("向其他系统写入待办失败,详细信息:"+ex.Message);
}
}
}
}