using System; using System.Collections; using BP.DA; using BP.Sys; using BP.En; using BP.WF; namespace BP.WF.Template { /// /// 绑定表单的审核组件 /// public class FrmWorkCheck : Entity { #region 属性 /// /// 节点编号 /// public string No { get { return "ND" + this.NodeID; } set { string nodeID = value.Replace("ND", ""); this.NodeID = int.Parse(nodeID); } } /// /// 节点ID /// public int NodeID { get { return this.GetValIntByKey(NodeAttr.NodeID); } set { this.SetValByKey(NodeAttr.NodeID, value); } } /// /// 状态 /// public FrmWorkCheckSta HisFrmWorkCheckSta { get { return (FrmWorkCheckSta)this.GetValIntByKey(NodeWorkCheckAttr.FWCSta); } set { this.SetValByKey(NodeWorkCheckAttr.FWCSta, (int)value); } } /// /// 显示格式(0=表格,1=自由.) /// public FrmWorkShowModel HisFrmWorkShowModel { get { return (FrmWorkShowModel)this.GetValIntByKey(NodeWorkCheckAttr.FWCShowModel); } set { this.SetValByKey(NodeWorkCheckAttr.FWCShowModel, (int)value); } } /// /// 附件类型 /// public FWCAth FWCAth { get { return (FWCAth)this.GetValIntByKey(NodeWorkCheckAttr.FWCAth); } set { this.SetValByKey(NodeWorkCheckAttr.FWCAth, (int)value); } } /// /// 组件类型 /// public FWCType HisFrmWorkCheckType { get { return (FWCType)this.GetValIntByKey(NodeWorkCheckAttr.FWCType); } set { this.SetValByKey(NodeWorkCheckAttr.FWCType, (int)value); } } /// /// 标签 /// public string FWCLab { get { return this.GetValStrByKey(NodeWorkCheckAttr.FWCLab); } } /// /// 组件类型名称 /// public string FWCTypeT { get { return this.GetValRefTextByKey(NodeWorkCheckAttr.FWCType); } } /// /// H /// public float FWC_H { get { return this.GetValFloatByKey(NodeWorkCheckAttr.FWC_H); } set { this.SetValByKey(NodeWorkCheckAttr.FWC_H, value); } } public string FWC_Hstr { get { if (this.FWC_H == 0) return "100%"; return this.FWC_H + "px"; } } /// /// 轨迹图是否显示? /// public bool FWCTrackEnable { get { return this.GetValBooleanByKey(NodeWorkCheckAttr.FWCTrackEnable); } set { this.SetValByKey(NodeWorkCheckAttr.FWCTrackEnable, value); } } /// /// 历史审核信息是否显示? /// public bool FWCListEnable { get { return this.GetValBooleanByKey(NodeWorkCheckAttr.FWCListEnable); } set { this.SetValByKey(NodeWorkCheckAttr.FWCListEnable, value); } } /// /// 在轨迹表里是否显示所有的步骤? /// public bool FWCIsShowAllStep { get { return this.GetValBooleanByKey(NodeWorkCheckAttr.FWCIsShowAllStep); } set { this.SetValByKey(NodeWorkCheckAttr.FWCIsShowAllStep, value); } } /// /// 是否显示轨迹在没有走到的节点 /// public bool FWCIsShowTruck { get { return this.GetValBooleanByKey(NodeWorkCheckAttr.FWCIsShowTruck); } set { this.SetValByKey(NodeWorkCheckAttr.FWCIsShowTruck, value); } } /// /// 是否显示退回信息? /// public int FWCIsShowReturnMsg { get { return this.GetValIntByKey(NodeWorkCheckAttr.FWCIsShowReturnMsg); } set { this.SetValByKey(NodeWorkCheckAttr.FWCIsShowReturnMsg, value); } } /// /// 如果用户未审核是否按照默认意见填充? /// public bool FWCIsFullInfo { get { return this.GetValBooleanByKey(NodeWorkCheckAttr.FWCIsFullInfo); } set { this.SetValByKey(NodeWorkCheckAttr.FWCIsFullInfo, value); } } /// /// 默认审核信息 /// public string FWCDefInfo { get { return this.GetValStringByKey(NodeWorkCheckAttr.FWCDefInfo); } set { this.SetValByKey(NodeWorkCheckAttr.FWCDefInfo, value); } } /// /// 节点名称. /// public string Name { get { return this.GetValStringByKey("Name"); } } /// /// 节点意见名称,如果为空则取节点名称. /// public string FWCNodeName { get { string str = this.GetValStringByKey(NodeWorkCheckAttr.FWCNodeName); if (DataType.IsNullOrEmpty(str)) return this.Name; return str; } } /// /// 操作名词(审核,审定,审阅,批示) /// public string FWCOpLabel { get { return this.GetValStringByKey(NodeWorkCheckAttr.FWCOpLabel); } set { this.SetValByKey(NodeWorkCheckAttr.FWCOpLabel, value); } } /// /// 操作字段 /// public string FWCFields { get { return this.GetValStringByKey(NodeWorkCheckAttr.FWCFields); } set { this.SetValByKey(NodeWorkCheckAttr.FWCFields, value); } } /// /// 自定义常用短语 /// public string FWCNewDuanYu { get { return this.GetValStringByKey(NodeWorkCheckAttr.FWCNewDuanYu); } set { this.SetValByKey(NodeWorkCheckAttr.FWCNewDuanYu, value); } } /// /// 是否显示数字签名? /// public int SigantureEnabel { get { return this.GetValIntByKey(NodeWorkCheckAttr.SigantureEnabel); } set { this.SetValByKey(NodeWorkCheckAttr.SigantureEnabel, value); } } /// /// 协作模式下操作员显示顺序 /// public FWCOrderModel FWCOrderModel { get { return (FWCOrderModel)this.GetValIntByKey(NodeWorkCheckAttr.FWCOrderModel, 0); } set { this.SetValByKey(NodeWorkCheckAttr.FWCOrderModel, (int)value); } } /// /// 审核组件状态 /// public FrmWorkCheckSta FWCSta { get { return (FrmWorkCheckSta)this.GetValIntByKey(NodeWorkCheckAttr.FWCSta, 0); } set { this.SetValByKey(NodeWorkCheckAttr.FWCSta, (int)value); } } public int FWCVer { get { return this.GetValIntByKey(NodeWorkCheckAttr.FWCVer, 0); } set { this.SetValByKey(NodeWorkCheckAttr.FWCVer,value); } } public string FWCView { get { return this.GetValStringByKey(NodeWorkCheckAttr.FWCView); } set { this.SetValByKey(NodeWorkCheckAttr.FWCView, value); } } public string CheckField { get { return this.GetValStringByKey(NodeWorkCheckAttr.CheckField); } set { this.SetValByKey(NodeWorkCheckAttr.CheckField, value); } } #endregion #region 构造方法 /// /// 控制 /// public override UAC HisUAC { get { UAC uac = new UAC(); // uac.OpenForSysAdmin(); uac.OpenForAdmin() ; //zsy2020.5.29修改 uac.IsDelete = false; uac.IsInsert = false; return uac; } } /// /// 重写主键 /// public override string PK { get { return "NodeID"; } } /// /// 审核组件 /// public FrmWorkCheck() { } /// /// 审核组件 /// /// public FrmWorkCheck(string mapData) { if (mapData.Contains("ND") == false) { this.HisFrmWorkCheckSta = FrmWorkCheckSta.Disable; return; } string mapdata = mapData.Replace("ND", ""); if (DataType.IsNumStr(mapdata) == false) { this.HisFrmWorkCheckSta = FrmWorkCheckSta.Disable; return; } try { this.NodeID = int.Parse(mapdata); } catch { return; } this.Retrieve(); } /// /// 审核组件 /// /// public FrmWorkCheck(int nodeID) { this.NodeID = nodeID; this.Retrieve(); } /// /// EnMap /// public override Map EnMap { get { if (this._enMap != null) return this._enMap; Map map = new Map("WF_Node", "审核组件"); map.AddTBIntPK(NodeAttr.NodeID, 0, "节点ID", true, true); map.AddTBString(NodeAttr.Name, null, "节点名称", true, true, 0, 100, 10); map.AddTBString(NodeWorkCheckAttr.FWCLab, "审核信息", "显示标签", true, false, 0, 100, 10, true); #region 此处变更了 NodeSheet类中的,map 描述该部分也要变更. //map.AddDDLSysEnum(NodeWorkCheckAttr.FWCSta, (int)FrmWorkCheckSta.Disable, "审核组件状态", // true, true, NodeWorkCheckAttr.FWCSta, "@0=禁用@1=启用@2=只读"); map.AddDDLSysEnum(NodeWorkCheckAttr.FWCShowModel, (int)FrmWorkShowModel.Free, "显示方式", true, true, NodeWorkCheckAttr.FWCShowModel, "@0=表格方式@1=自由模式"); //此属性暂时没有用. map.AddDDLSysEnum(NodeWorkCheckAttr.FWCType, (int)FWCType.Check, "审核组件", true, true, NodeWorkCheckAttr.FWCType, "@0=审核组件@1=日志组件@2=周报组件@3=月报组件"); map.AddTBString(NodeWorkCheckAttr.FWCNodeName, null, "节点意见名称", true, false, 0, 100, 10); map.AddDDLSysEnum(NodeWorkCheckAttr.FWCAth, (int)FWCAth.None, "附件上传", true, true, NodeWorkCheckAttr.FWCAth, "@0=不启用@1=多附件@2=单附件(暂不支持)@3=图片附件(暂不支持)"); map.SetHelperAlert(NodeWorkCheckAttr.FWCAth, "在审核期间,是否启用上传附件?启用什么样的附件?注意:附件的属性在节点表单里配置。"); //使用alert的方式显示帮助信息. map.AddBoolean(NodeWorkCheckAttr.FWCTrackEnable, true, "轨迹图是否显示?", true, true, false); map.AddBoolean(NodeWorkCheckAttr.FWCListEnable, true, "历史审核信息是否显示?(否,仅出现意见框)", true, true, true); map.AddBoolean(NodeWorkCheckAttr.FWCIsShowAllStep, false, "在轨迹表里是否显示所有的步骤?", true, true); map.AddTBString(NodeWorkCheckAttr.FWCOpLabel, "审核", "操作名词(审核/审阅/批示)", true, false, 0, 50, 10); map.AddTBString(NodeWorkCheckAttr.FWCDefInfo, "同意", "默认审核信息", true, false, 0, 50, 10); map.AddDDLSysEnum(NodeWorkCheckAttr.SigantureEnabel, 0, "签名方式", true, true, NodeWorkCheckAttr.SigantureEnabel, "@0=不签名@1=图片签名@2=写字板@3=电子签名@4=电子盖章@5=电子签名+盖章"); map.SetHelperUrl(NodeWorkCheckAttr.SigantureEnabel, "https://gitee.com/opencc/JFlow/wikis/pages/preview?sort_id=5415110&doc_id=31094"); map.AddBoolean(NodeWorkCheckAttr.FWCIsFullInfo, true, "如果用户未审核是否按照默认意见填充?", true, true, true); // map.AddBoolean("WhetherStamp", false, "是否启用盖章", true, true, true); map.AddTBFloat(NodeWorkCheckAttr.FWC_H, 300, "高度(0=100%)", true, false); map.AddTBString(NodeWorkCheckAttr.FWCFields, null, "审批格式字段", true, false, 0, 50, 10, true); //map.AddTBString(NodeWorkCheckAttr.FWCNewDuanYu, null, "自定义常用短语(使用@分隔)", true, false, 0, 100, 10, true); map.AddBoolean(NodeWorkCheckAttr.FWCIsShowTruck, false, "是否显示未审核的轨迹?", true, true, true); //map.AddBoolean(NodeWorkCheckAttr.FWCIsShowReturnMsg, false, "是否显示退回信息?", true, true, true); map.AddDDLSysEnum(NodeWorkCheckAttr.FWCIsShowReturnMsg, 0, "退回信息显示规则", true, true, NodeWorkCheckAttr.FWCIsShowReturnMsg, "@0=不显示@1=退回到的节点显示@2=显示全部退回信息"); //增加如下字段是为了查询与排序的需要. map.AddTBString(NodeAttr.FK_Flow, null, "流程编号", false, false, 0, 4, 10); map.AddTBInt(NodeAttr.Step, 0, "步骤", false, false); //协作模式下审核人显示顺序. add for yantai zongheng. map.AddDDLSysEnum(NodeWorkCheckAttr.FWCOrderModel, 0, "协作模式下操作员显示顺序", true, true, NodeWorkCheckAttr.FWCOrderModel, "@0=按审批时间先后排序@1=按照接受人员列表先后顺序(官职大小)"); //for tianye , 多人审核的时候,不让其看到其他人的意见. map.AddDDLSysEnum(NodeWorkCheckAttr.FWCMsgShow, 0, "审核意见显示方式", true, true, NodeWorkCheckAttr.FWCMsgShow, "@0=都显示@1=仅显示自己的意见"); map.AddDDLSysEnum(NodeWorkCheckAttr.FWCVer, 1, "审核意见保存规则", true, true, NodeWorkCheckAttr.FWCVer, "@0=1个节点1个人保留1个意见@1=保留节点历史意见"); //map.AddTBString(NodeWorkCheckAttr.CheckField, null, "签批字段", true, false, 0, 50, 10, false); map.AddTBString(NodeWorkCheckAttr.FWCView, null, "审核意见立场", true, false, 20, 200, 200,true); map.SetHelperAlert(NodeWorkCheckAttr.FWCView, "比如:同意,不同意,酌情处理, 多个立场用逗号分开,此立场可以作为方向条件."); #endregion 此处变更了 NodeSheet类中的,map 描述该部分也要变更. this._enMap = map; return this._enMap; } } #endregion protected override bool beforeUpdateInsertAction() { if (this.FWCAth == FWCAth.MinAth) { FrmAttachment workCheckAth = new FrmAttachment(); bool isHave = workCheckAth.RetrieveByAttr(FrmAttachmentAttr.MyPK, this.NodeID + "_FrmWorkCheck"); //不包含审核组件 if (isHave == false) { workCheckAth = new FrmAttachment(); /*如果没有查询到它,就有可能是没有创建.*/ workCheckAth.setMyPK("ND" + this.NodeID + "_FrmWorkCheck"); workCheckAth.FrmID ="ND" + this.NodeID.ToString(); workCheckAth.NoOfObj = "FrmWorkCheck"; workCheckAth.Exts = "*.*"; //存储路径. // workCheckAth.SaveTo = "/DataUser/UploadFile/"; workCheckAth.ItIsNote = false; //不显示note字段. workCheckAth.ItIsVisable = false; // 让其在form 上不可见. //位置. workCheckAth.H = (float)150; //多附件. workCheckAth.UploadType = AttachmentUploadType.Multi; workCheckAth.Name = "审核组件"; workCheckAth.SetValByKey("AtPara", "@IsWoEnablePageset=1@IsWoEnablePrint=1@IsWoEnableViewModel=1@IsWoEnableReadonly=0@IsWoEnableSave=1@IsWoEnableWF=1@IsWoEnableProperty=1@IsWoEnableRevise=1@IsWoEnableIntoKeepMarkModel=1@FastKeyIsEnable=0@IsWoEnableViewKeepMark=1@FastKeyGenerRole=@IsWoEnableTemplete=1"); workCheckAth.Insert(); } } return base.beforeUpdateInsertAction(); } protected override void afterInsertUpdateAction() { if (this.FWCLab.Equals("审核组件") == false) { GroupFields groupFields = new GroupFields(); groupFields.Retrieve(GroupFieldAttr.FrmID, "ND" + this.NodeID, GroupFieldAttr.CtrlType, GroupCtrlType.FWC); if (groupFields.Count == 1) { GroupField gf = groupFields[0] as GroupField; if (gf.Lab.Equals(this.FWCLab) == false) { gf.Lab = this.FWCLab; gf.Update(); } } } base.afterInsertUpdateAction(); } } /// /// 审核组件s /// public class FrmWorkChecks : Entities { #region 构造 /// /// 审核组件s /// public FrmWorkChecks() { } /// /// 得到它的 Entity /// public override Entity GetNewEntity { get { return new FrmWorkCheck(); } } #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((FrmWorkCheck)this[i]); } return list; } #endregion 为了适应自动翻译成java的需要,把实体转换成List. } }