Browse Source

【修改】流程设计:增加部门负责人、分管校长判断的优化;

西昌缴费二期
dyy 2 years ago
parent
commit
de10541518
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.WorkFlow/Process/NWFProcessBLL.cs

+ 2
- 2
Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.WorkFlow/Process/NWFProcessBLL.cs View File

@@ -773,7 +773,7 @@ namespace Learun.Application.WorkFlow
var parentDepart = departmentIBLL.GetEntity(selfDepart.F_ParentId); var parentDepart = departmentIBLL.GetEntity(selfDepart.F_ParentId);
if (parentDepart != null) if (parentDepart != null)
{ {
if (!string.IsNullOrEmpty(selfDepart.F_SchoolMasterId))
if (!string.IsNullOrEmpty(parentDepart.F_SchoolMasterId))
{ {
schoolMasterId = parentDepart.F_SchoolMasterId; schoolMasterId = parentDepart.F_SchoolMasterId;
} }
@@ -815,7 +815,7 @@ namespace Learun.Application.WorkFlow
var parentDepart = departmentIBLL.GetEntity(selfDepart2.F_ParentId); var parentDepart = departmentIBLL.GetEntity(selfDepart2.F_ParentId);
if (parentDepart != null) if (parentDepart != null)
{ {
if (!string.IsNullOrEmpty(selfDepart2.F_Manager))
if (!string.IsNullOrEmpty(parentDepart.F_Manager))
{ {
deptMasterId = parentDepart.F_Manager; deptMasterId = parentDepart.F_Manager;
} }


Loading…
Cancel
Save