From e9490a5e39a835c41d4276d05669a5b30a6640ed Mon Sep 17 00:00:00 2001 From: liangkun Date: Fri, 25 Nov 2022 12:09:56 +0800 Subject: [PATCH] =?UTF-8?q?20221125=E5=A2=9E=E5=8A=A0=E4=BD=9C=E5=BA=9F?= =?UTF-8?q?=E4=B8=8D=E6=98=BE=E7=A4=BAliang?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Learun.Application.WorkFlow/Process/NWFProcessSerivce.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.WorkFlow/Process/NWFProcessSerivce.cs b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.WorkFlow/Process/NWFProcessSerivce.cs index efcb5f39b..a2f7c6e39 100644 --- a/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.WorkFlow/Process/NWFProcessSerivce.cs +++ b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.WorkFlow/Process/NWFProcessSerivce.cs @@ -150,6 +150,8 @@ namespace Learun.Application.WorkFlow expression = expression.And(t => t.F_Title.Contains(keyword) || t.F_SchemeName.Contains(keyword) || t.F_CreateUserName.Contains(keyword)); } expression = expression.And(t => t.F_EnabledMark != 2); + //20221125增加作废不显示liang + expression = expression.And(t=>t.F_EnabledMark!=3); expression = expression.And(t => t.F_IsChild == 0); var result = this.BaseRepository().FindList(expression, pagination);