From c07d0c4f13692c82ac0ff0901eda4871627a14d7 Mon Sep 17 00:00:00 2001 From: wuzuowei Date: Mon, 18 Mar 2024 17:29:29 +0800 Subject: [PATCH] =?UTF-8?q?=E5=B7=B2=E5=8A=9E=E8=A1=A8=E6=A0=BC=E5=A2=9E?= =?UTF-8?q?=E5=8A=A0=E5=AD=97=E6=AE=B5=E7=BB=93=E6=9D=9F=E6=97=B6=E9=97=B4?= =?UTF-8?q?=E5=92=8C=E6=8E=92=E5=BA=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CCFlow/Components/BP.WF/Data/GenerWorkFlowView.cs | 2 +- CCFlow/Components/BP.WF/Data/MyJoinFlow.cs | 3 +++ CCFlow/Components/BP.WF/Data/MyStartFlow.cs | 3 +++ 3 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CCFlow/Components/BP.WF/Data/GenerWorkFlowView.cs b/CCFlow/Components/BP.WF/Data/GenerWorkFlowView.cs index ccde16ba..288622dc 100644 --- a/CCFlow/Components/BP.WF/Data/GenerWorkFlowView.cs +++ b/CCFlow/Components/BP.WF/Data/GenerWorkFlowView.cs @@ -579,7 +579,7 @@ namespace BP.WF.Data map.AddTBDateTime(GenerWorkFlowAttr.RDT, "记录日期", true, true); map.AddTBString(GenerWorkFlowAttr.BillNo, null, "单据编号", true, true, 0, 100, 10); //map.AddTBStringDoc(GenerWorkFlowAttr.FlowNote, null, "备注", true, false, true); - + map.AddTBDateTime(GenerWorkFlowAttr.SendDT, "结束时间",true, true);//结束时间 map.AddDDLEntities(GenerWorkFlowAttr.FK_FlowSort, null, "流程类别", new FlowSorts(), false); map.AddDDLEntities(GenerWorkFlowAttr.FK_Flow, null, "流程", new Flows(), false); map.AddDDLEntities(GenerWorkFlowAttr.FK_Dept, null, "隶属部门", new BP.Port.Depts(), false); diff --git a/CCFlow/Components/BP.WF/Data/MyJoinFlow.cs b/CCFlow/Components/BP.WF/Data/MyJoinFlow.cs index aa035390..0fcb9c7e 100644 --- a/CCFlow/Components/BP.WF/Data/MyJoinFlow.cs +++ b/CCFlow/Components/BP.WF/Data/MyJoinFlow.cs @@ -733,6 +733,9 @@ namespace BP.WF.Data map.AddTBString(MyFlowAttr.NodeName, null, "当前节点", true, false, 0, 100, 100, true); map.AddTBString(MyStartFlowAttr.TodoEmps, null, "当前处理人", true, false, 0, 100, 100, true); + map.AddTBDateTime(GenerWorkFlowAttr.SendDT, "结束时间", true, true);//结束时间 + + map.AddTBString(MyFlowAttr.Emps, null, "参与人", false, false, 0, 4000, 10, true); map.AddTBStringDoc(MyFlowAttr.FlowNote, null, "备注", true, false, true); map.AddTBDateTime(GenerWorkFlowAttr.SDTOfNode, "节点应完成时间", true, true); diff --git a/CCFlow/Components/BP.WF/Data/MyStartFlow.cs b/CCFlow/Components/BP.WF/Data/MyStartFlow.cs index 6c7c1227..19b9840c 100644 --- a/CCFlow/Components/BP.WF/Data/MyStartFlow.cs +++ b/CCFlow/Components/BP.WF/Data/MyStartFlow.cs @@ -721,6 +721,9 @@ namespace BP.WF.Data map.AddTBString(MyStartFlowAttr.Starter, null, "发起人", false, false, 0, 100, 100); map.AddTBDate(MyStartFlowAttr.RDT, "发起日期", true, true); + map.AddTBDateTime(GenerWorkFlowAttr.SendDT, "结束时间", true, true);//结束时间 + + map.AddTBString(MyStartFlowAttr.NodeName, null, "停留节点", true, true, 0, 100, 100, false); map.AddTBString(MyStartFlowAttr.TodoEmps, null, "当前处理人", true, false, 0, 100, 100, false); map.AddTBStringDoc(MyFlowAttr.FlowNote, null, "备注", true, false, true);