From 631b42c89ecfb7a9963cdb66138c24261fdce2e8 Mon Sep 17 00:00:00 2001 From: yubaolee Date: Wed, 1 Mar 2017 11:48:25 +0800 Subject: [PATCH] check bugs --- OpenAuth.App/WFProcessInstanceService.cs | 2 +- .../Areas/FlowManage/Views/FlowInstances/ProcessLookForm.cshtml | 1 + .../FlowManage/Views/FlowInstances/VerificationForm.cshtml | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/OpenAuth.App/WFProcessInstanceService.cs b/OpenAuth.App/WFProcessInstanceService.cs index 887adc9f..9feb1eea 100644 --- a/OpenAuth.App/WFProcessInstanceService.cs +++ b/OpenAuth.App/WFProcessInstanceService.cs @@ -754,7 +754,7 @@ namespace OpenAuth.App WFProcessInstance.ActivityType = wfruntime.runtimeModel.nextNodeType;//-1无法运行,0会签开始,1会签结束,2一般节点,4流程运行结束 WFProcessInstance.ActivityName = wfruntime.runtimeModel.nextNode.name; WFProcessInstance.IsFinish = (wfruntime.runtimeModel.nextNodeType == 4 ? 1 : 0); - WFProcessInstance.MakerList = (wfruntime.runtimeModel.nextNodeType == 4 ? GetMakerList(wfruntime) : "");//当前节点可执行的人信息 + WFProcessInstance.MakerList = (wfruntime.runtimeModel.nextNodeType == 4 ?"": GetMakerList(wfruntime) );//当前节点可执行的人信息 #region 流转记录 processTransitionHistoryEntity = new WFProcessTransitionHistory(); diff --git a/OpenAuth.Mvc/Areas/FlowManage/Views/FlowInstances/ProcessLookForm.cshtml b/OpenAuth.Mvc/Areas/FlowManage/Views/FlowInstances/ProcessLookForm.cshtml index c2ca0c66..8d1c4f36 100644 --- a/OpenAuth.Mvc/Areas/FlowManage/Views/FlowInstances/ProcessLookForm.cshtml +++ b/OpenAuth.Mvc/Areas/FlowManage/Views/FlowInstances/ProcessLookForm.cshtml @@ -2,6 +2,7 @@ ViewBag.Title = "查看流程进度"; Layout = "~/Views/Shared/_FlowForm.cshtml"; } +