From 6619ba23a7969b12cdf9a247490d7e183caa512f Mon Sep 17 00:00:00 2001 From: dyy <807692433@qq.com> Date: Fri, 9 Dec 2022 17:04:38 +0800 Subject: [PATCH] =?UTF-8?q?=E3=80=90=E4=BF=AE=E6=94=B9=E3=80=91=E6=B5=81?= =?UTF-8?q?=E7=A8=8B=E8=AE=BE=E8=AE=A1=EF=BC=9A=E5=A2=9E=E5=8A=A0=E9=83=A8?= =?UTF-8?q?=E9=97=A8=E8=B4=9F=E8=B4=A3=E4=BA=BA=E3=80=81=E5=88=86=E7=AE=A1?= =?UTF-8?q?=E6=A0=A1=E9=95=BF=E5=88=A4=E6=96=AD=E7=9A=84=E4=BC=98=E5=8C=96?= =?UTF-8?q?=EF=BC=9B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Learun.Application.WorkFlow/Process/NWFProcessBLL.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.WorkFlow/Process/NWFProcessBLL.cs b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.WorkFlow/Process/NWFProcessBLL.cs index db7e380a1..a2bf609f0 100644 --- a/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.WorkFlow/Process/NWFProcessBLL.cs +++ b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.WorkFlow/Process/NWFProcessBLL.cs @@ -812,7 +812,7 @@ namespace Learun.Application.WorkFlow var parentDepart = departmentIBLL.GetEntity(selfDepart.F_ParentId); if (parentDepart != null) { - if (!string.IsNullOrEmpty(selfDepart.F_SchoolMasterId)) + if (!string.IsNullOrEmpty(parentDepart.F_SchoolMasterId)) { schoolMasterId = parentDepart.F_SchoolMasterId; } @@ -856,7 +856,7 @@ namespace Learun.Application.WorkFlow var parentDepart = departmentIBLL.GetEntity(selfDepart2.F_ParentId); if (parentDepart != null) { - if (!string.IsNullOrEmpty(selfDepart2.F_Manager)) + if (!string.IsNullOrEmpty(parentDepart.F_Manager)) { deptMasterId = parentDepart.F_Manager; }