修改质量计划

This commit is contained in:
2023-03-15 16:56:14 +08:00
parent 0b1b5f4731
commit f2a3954a44
7 changed files with 29 additions and 8 deletions
@@ -295,6 +295,15 @@ namespace BLL
}
}
public static string GetHandleManName(string SubPlanId)
{
string name = string.Empty;
var a = Funs.DB.Plan_SubPlanApprove.FirstOrDefault(x => x.SubPlanId == SubPlanId && x.ApproveDate == null);
if (a != null)
{
name = BLL.Person_PersonsService.GetPersonsNameById(a.ApproveMan);
}
return name;
}
}
}