using BP.En;
namespace BP.WF.Template.SFlow
{
///
/// 子流程属性
///
public class SubFlowAttr : BP.En.EntityOIDNameAttr
{
#region 基本属性
///
/// 标题
///
public const string SubFlowNo = "SubFlowNo";
///
/// 流程名称
///
public const string SubFlowName = "SubFlowName";
///
/// 子流程状态
///
public const string SubFlowSta = "SubFlowSta";
///
/// 顺序号
///
public const string Idx = "Idx";
///
/// 批量发送后是否隐藏父流程的待办.
///
public const string SubFlowHidTodolist = "SubFlowHidTodolist";
///
/// 显示在那里?
///
public const string YGWorkWay = "YGWorkWay";
///
/// 主流程编号
///
public const string FK_Flow = "FK_Flow";
///
/// 节点ID
///
public const string FK_Node = "FK_Node";
///
/// 表达式类型
///
public const string ExpType = "ExpType";
///
/// 条件表达式
///
public const string CondExp = "CondExp";
///
/// 调用时间
///
public const string InvokeTime = "InvokeTime";
///
/// 越轨子流程退回类型
///
public const string YBFlowReturnRole = "YBFlowReturnRole";
///
/// 要退回的节点
///
public const string ReturnToNode = "ReturnToNode";
///
/// 延续到的节点
///
public const string YanXuToNode = "YanXuToNode";
///
/// 子流程类型
///
public const string SubFlowType = "SubFlowType";
///
/// 子流程模式
///
public const string SubFlowModel = "SubFlowModel";
#endregion
#region 子流程的发起.
///
/// 如果当前为子流程,仅仅只能被调用1次,不能被重复调用。
///
public const string StartOnceOnly = "StartOnceOnly";
///
/// 如果当前为子流程,只有该流程结束后才可以重新启用
///
public const string CompleteReStart = "CompleteReStart";
///
/// 是否启动
///
public const string IsEnableSpecFlowStart = "IsEnableSpecFlowStart";
///
/// 指定的流程启动后,才能启动该子流程.
///
public const string SpecFlowStart = "SpecFlowStart";
///
/// 备注
///
public const string SpecFlowStartNote = "SpecFlowStartNote";
///
/// 是否启用
///
public const string IsEnableSpecFlowOver = "IsEnableSpecFlowOver";
///
/// 指定的子流程结束后,才能启动该子流程.
///
public const string SpecFlowOver = "SpecFlowOver";
///
/// 备注
///
public const string SpecFlowOverNote = "SpecFlowOverNote";
///
/// 是否启用按指定的SQL启动
///
public const string IsEnableSQL = "IsEnableSQL";
///
/// SQL语句
///
public const string SpecSQL = "SpecSQL";
///
/// 是否启动按指定平级子流程节点
///
public const string IsEnableSameLevelNode = "IsEnableSameLevelNode";
///
/// 平级子流程节点
///
public const string SameLevelNode = "SameLevelNode";
///
/// 启动模式
///
public const string SubFlowStartModel = "SubFlowStartModel";
///
/// 展现风格.
///
public const string SubFlowShowModel = "SubFlowShowModel";
#endregion
///
/// 自动启动子流程:发送规则.
///
public const string SendModel = "SendModel";
///
/// 父流程字段值拷贝到对应子流程字段中
///
public const string SubFlowCopyFields = "SubFlowCopyFields";
///
/// 子流程结束后填充父流程的规则
///
public const string BackCopyRole = "BackCopyRole";
///
/// 子流程字段值拷贝到对应父流程字段中
///
public const string ParentFlowCopyFields = "ParentFlowCopyFields";
///
/// 父流程自动运行到下一步的规则
///
public const string ParentFlowSendNextStepRole = "ParentFlowSendNextStepRole";
///
/// 父流程自动结束的规则
///
public const string ParentFlowOverRole = "ParentFlowOverRole";
///
/// 指定的子流程节点
///
public const string SubFlowNodeID = "SubFlowNodeID";
///
/// 位置x
///
public const string X = "X";
///
/// 位置y
///
public const string Y = "Y";
///
/// 数据源类型
///
public const string DBSrcType = "DBSrcType";
///
/// 数据源内容
///
public const string DBSrcDoc = "DBSrcDoc";
}
///
/// 子流程.
///
public class SubFlow : EntityMyPK
{
#region 基本属性
///
/// UI界面上的访问控制
///
public override UAC HisUAC
{
get
{
UAC uac = new UAC();
uac.OpenForSysAdmin();
uac.IsInsert = false;
return uac;
}
}
///
/// 子流程编号
///
public string SubFlowNo
{
get
{
return this.GetValStringByKey(SubFlowYanXuAttr.SubFlowNo);
}
set
{
SetValByKey(SubFlowYanXuAttr.SubFlowNo, value);
}
}
///
/// 流程名称
///
public string SubFlowName
{
get
{
return this.GetValStringByKey(SubFlowYanXuAttr.SubFlowName);
}
}
///
/// 条件表达式.
///
public string CondExp
{
get
{
return this.GetValStringByKey(SubFlowYanXuAttr.CondExp);
}
set
{
SetValByKey(SubFlowYanXuAttr.CondExp, value);
}
}
///
/// 表达式类型
///
public ConnDataFrom ExpType
{
get
{
return (ConnDataFrom)this.GetValIntByKey(SubFlowYanXuAttr.ExpType);
}
set
{
SetValByKey(SubFlowYanXuAttr.ExpType, (int)value);
}
}
///
/// 主流程编号
///
public string FlowNo
{
get
{
return this.GetValStringByKey(SubFlowYanXuAttr.FK_Flow);
}
set
{
SetValByKey(SubFlowYanXuAttr.FK_Flow, value);
}
}
///
/// 主流程NodeID
///
public int NodeID
{
get
{
return this.GetValIntByKey(SubFlowYanXuAttr.FK_Node);
}
set
{
SetValByKey(SubFlowYanXuAttr.FK_Node, value);
}
}
///
/// 发送成功后是否隐藏父流程的待办.
///
public bool SubFlowHidTodolist
{
get
{
return this.GetValBooleanByKey(SubFlowYanXuAttr.SubFlowHidTodolist);
}
set
{
SetValByKey(SubFlowYanXuAttr.SubFlowHidTodolist, value);
}
}
public SubFlowType SubFlowType
{
get
{
return (SubFlowType)this.GetValIntByKey(SubFlowYanXuAttr.SubFlowType);
}
}
///
/// 指定的流程启动后,才能启动该子流程(请在文本框配置子流程).
///
public bool ItIsEnableSpecFlowStart
{
get
{
bool val = this.GetValBooleanByKey(SubFlowAutoAttr.IsEnableSpecFlowStart);
if (val == false)
return false;
if (this.SpecFlowStart.Length > 2)
return true;
return false;
}
}
///
/// 仅仅可以启动一次?
///
public bool StartOnceOnly
{
get
{
return this.GetValBooleanByKey(SubFlowYanXuAttr.StartOnceOnly);
}
}
///
/// 指定的流程结束后,才能启动该子流程(请在文本框配置子流程).
///
public bool ItIsEnableSpecFlowOver
{
get
{
bool val = this.GetValBooleanByKey(SubFlowAutoAttr.IsEnableSpecFlowOver);
if (val == false)
return false;
if (this.SpecFlowOver.Length > 2)
return true;
return false;
}
}
public string SpecFlowOver
{
get
{
return this.GetValStringByKey(SubFlowYanXuAttr.SpecFlowOver);
}
}
public string SpecFlowStart
{
get
{
return this.GetValStringByKey(SubFlowYanXuAttr.SpecFlowStart);
}
}
///
/// 自动发起的子流程发送方式
///
public int SendModel
{
get
{
return this.GetValIntByKey(SubFlowAutoAttr.SendModel);
}
}
///
/// 父流程运行到下一步的规则
///
public SubFlowRunModel ParentFlowSendNextStepRole
{
get
{
return (SubFlowRunModel)this.GetValIntByKey(SubFlowAttr.ParentFlowSendNextStepRole);
}
}
///
/// 父流程结束的规则
///
public SubFlowRunModel ParentFlowOverRole
{
get
{
return (SubFlowRunModel)this.GetValIntByKey(SubFlowAttr.ParentFlowOverRole);
}
}
///
/// 同级子流程结束规则
///
public int IsAutoSendSLSubFlowOver
{
get
{
return this.GetValIntByKey(SubFlowAutoAttr.IsAutoSendSLSubFlowOver);
}
}
public string SubFlowCopyFields
{
get
{
return this.GetValStringByKey(SubFlowAttr.SubFlowCopyFields);
}
}
public BackCopyRole BackCopyRole
{
get
{
return (BackCopyRole)this.GetValIntByKey(SubFlowAttr.BackCopyRole);
}
}
public string ParentFlowCopyFields
{
get
{
return this.GetValStringByKey(SubFlowAttr.ParentFlowCopyFields);
}
}
public int SubFlowNodeID
{
get
{
return this.GetValIntByKey(SubFlowAttr.SubFlowNodeID);
}
}
#endregion
#region 构造函数
///
/// 子流程
///
public SubFlow() { }
///
/// 重写基类方法
///
public override Map EnMap
{
get
{
if (this._enMap != null)
return this._enMap;
Map map = new Map("WF_NodeSubFlow", "子流程(所有类型子流程属性)");
map.IndexField = SubFlowAttr.FK_Node;
map.AddMyPK();
map.AddTBString(SubFlowAttr.FK_Flow, null, "主流程编号", true, true, 0, 5, 150);
map.AddTBInt(SubFlowAttr.FK_Node, 0, "主流程节点", false, true);
map.AddTBInt(SubFlowAttr.SubFlowType, 0, "子流程类型", false, true);
map.AddTBInt(SubFlowAttr.SubFlowModel, 0, "子流程模式", false, true);
map.AddTBInt(SubFlowAutoAttr.ParentFlowSendNextStepRole, 0, "父流程自动运行到下一步规则", false, true);
map.AddTBInt(SubFlowAutoAttr.ParentFlowOverRole, 0, "父流程结束规则", false, true);
map.AddTBInt(SubFlowAutoAttr.SubFlowNodeID, 0, "指定子流程节点ID", false, true);
map.AddTBInt(SubFlowAutoAttr.IsAutoSendSLSubFlowOver, 0, "同级子流程结束规则", false, true);
map.AddTBString(SubFlowAttr.SubFlowNo, null, "子流程编号", true, true, 0, 10, 150, false);
map.AddTBString(SubFlowAttr.SubFlowName, null, "子流程名称", true, true, 0, 200, 150, false);
//启动限制规则0.
map.AddTBInt(SubFlowAttr.StartOnceOnly, 0, "仅能被调用1次", false, true);
//启动限制规则1.
map.AddTBInt(SubFlowAttr.IsEnableSpecFlowStart, 0, "指定的流程启动后,才能启动该子流程(请在文本框配置子流程).", false, true);
map.AddTBString(SubFlowHandAttr.SpecFlowStart, null, "子流程编号", true, false, 0, 200, 150, true);
map.AddTBString(SubFlowHandAttr.SpecFlowStartNote, null, "备注", true, false, 0, 500, 150, true);
//启动限制规则2.
map.AddTBInt(SubFlowHandAttr.IsEnableSpecFlowOver, 0, "指定的流程结束后,才能启动该子流程(请在文本框配置子流程).", true, true);
map.AddTBString(SubFlowHandAttr.SpecFlowOver, null, "子流程编号", true, false, 0, 200, 150, true);
map.AddTBString(SubFlowHandAttr.SpecFlowOverNote, null, "备注", true, false, 0, 500, 150, true);
map.AddTBInt(SubFlowAttr.ExpType, 0, "表达式类型", false, true);
map.AddTBString(SubFlowAttr.CondExp, null, "条件表达式", true, false, 0, 500, 150, true);
map.AddTBInt(SubFlowAttr.YBFlowReturnRole, 0, "退回方式", false, true);
map.AddTBString(SubFlowAttr.ReturnToNode, null, "要退回的节点", true, true, 0, 200, 150, false);
map.AddTBInt(SubFlowAttr.SendModel, 0, "自动触发的子流程发送方式", false, true);
map.AddTBInt(SubFlowAttr.SubFlowStartModel, 0, "启动模式", false, true);
map.AddTBString(SubFlowAttr.SubFlowCopyFields, null, "父流程字段对应子流程字段", false, false, 0, 400, 150, true);
map.AddTBInt(SubFlowAttr.BackCopyRole, 0, "子流程结束后数据字段反填规则", false,true); ;
map.AddTBString(SubFlowAttr.ParentFlowCopyFields, null, "子流程字段对应父流程字段", true, false, 0, 400, 150, true);
map.AddDDLSysEnum(SubFlowYanXuAttr.SubFlowSta, 1, "状态", true, true, SubFlowYanXuAttr.SubFlowSta,
"@0=禁用@1=启用@2=只读");
map.AddTBInt(SubFlowAttr.Idx, 0, "顺序", true, false);
map.AddTBInt(SubFlowAttr.X, 0, "X", true, false);
map.AddTBInt(SubFlowAttr.Y, 0, "Y", true, false);
//为中科软增加. 批量发送后,需要隐藏父流程的待办.
map.AddTBInt(SubFlowAttr.SubFlowHidTodolist, 0, "批量发送后是否隐藏父流程待办", true, false);
this._enMap = map;
return this._enMap;
}
}
#endregion
///
/// 设置主键
///
///
protected override bool beforeInsert()
{
this.setMyPK(this.NodeID + "_" + this.SubFlowNo + "_" + (int)this.SubFlowType);
return base.beforeInsert();
}
}
///
/// 子流程集合
///
public class SubFlows : EntitiesMyPK
{
#region 方法
///
/// 得到它的 Entity
///
public override Entity GetNewEntity
{
get
{
return new SubFlow();
}
}
#endregion
#region 构造方法
///
/// 子流程集合
///
public SubFlows()
{
}
///
/// 子流程集合.
///
/// 节点
public SubFlows(int fk_node)
{
this.Retrieve(SubFlowYanXuAttr.FK_Node, fk_node);
}
///
/// 根据主流程编号获取该流程启动的子流程数据
///
///
public SubFlows(string fk_flow)
{
this.Retrieve(SubFlowYanXuAttr.FK_Flow, fk_flow);
}
#endregion
#region 为了适应自动翻译成java的需要,把实体转换成List
///
/// 转化成 java list,C#不能调用.
///
/// List
public System.Collections.Generic.IList ToJavaList()
{
return (System.Collections.Generic.IList)this;
}
///
/// 转化成list
///
/// List
public System.Collections.Generic.List Tolist()
{
System.Collections.Generic.List list = new System.Collections.Generic.List();
for (int i = 0; i < this.Count; i++)
{
list.Add((SubFlow)this[i]);
}
return list;
}
#endregion 为了适应自动翻译成java的需要,把实体转换成List.
}
}