已办表格增加字段结束时间和排序

master
wuzuowei 6 months ago
parent 750cb015d5
commit c07d0c4f13

@ -579,7 +579,7 @@ namespace BP.WF.Data
map.AddTBDateTime(GenerWorkFlowAttr.RDT, "记录日期", true, true); map.AddTBDateTime(GenerWorkFlowAttr.RDT, "记录日期", true, true);
map.AddTBString(GenerWorkFlowAttr.BillNo, null, "单据编号", true, true, 0, 100, 10); map.AddTBString(GenerWorkFlowAttr.BillNo, null, "单据编号", true, true, 0, 100, 10);
//map.AddTBStringDoc(GenerWorkFlowAttr.FlowNote, null, "备注", true, false, true); //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_FlowSort, null, "流程类别", new FlowSorts(), false);
map.AddDDLEntities(GenerWorkFlowAttr.FK_Flow, null, "流程", new Flows(), false); map.AddDDLEntities(GenerWorkFlowAttr.FK_Flow, null, "流程", new Flows(), false);
map.AddDDLEntities(GenerWorkFlowAttr.FK_Dept, null, "隶属部门", new BP.Port.Depts(), false); map.AddDDLEntities(GenerWorkFlowAttr.FK_Dept, null, "隶属部门", new BP.Port.Depts(), false);

@ -733,6 +733,9 @@ namespace BP.WF.Data
map.AddTBString(MyFlowAttr.NodeName, null, "当前节点", true, false, 0, 100, 100, true); map.AddTBString(MyFlowAttr.NodeName, null, "当前节点", true, false, 0, 100, 100, true);
map.AddTBString(MyStartFlowAttr.TodoEmps, 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.AddTBString(MyFlowAttr.Emps, null, "参与人", false, false, 0, 4000, 10, true);
map.AddTBStringDoc(MyFlowAttr.FlowNote, null, "备注", true, false, true); map.AddTBStringDoc(MyFlowAttr.FlowNote, null, "备注", true, false, true);
map.AddTBDateTime(GenerWorkFlowAttr.SDTOfNode, "节点应完成时间", true, true); map.AddTBDateTime(GenerWorkFlowAttr.SDTOfNode, "节点应完成时间", true, true);

@ -721,6 +721,9 @@ namespace BP.WF.Data
map.AddTBString(MyStartFlowAttr.Starter, null, "发起人", false, false, 0, 100, 100); map.AddTBString(MyStartFlowAttr.Starter, null, "发起人", false, false, 0, 100, 100);
map.AddTBDate(MyStartFlowAttr.RDT, "发起日期", true, true); 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.NodeName, null, "停留节点", true, true, 0, 100, 100, false);
map.AddTBString(MyStartFlowAttr.TodoEmps, null, "当前处理人", true, false, 0, 100, 100, false); map.AddTBString(MyStartFlowAttr.TodoEmps, null, "当前处理人", true, false, 0, 100, 100, false);
map.AddTBStringDoc(MyFlowAttr.FlowNote, null, "备注", true, false, true); map.AddTBStringDoc(MyFlowAttr.FlowNote, null, "备注", true, false, true);

Loading…
Cancel
Save