修改质量计划
This commit is contained in:
@@ -115,6 +115,16 @@ namespace BLL
|
||||
{
|
||||
return db.Plan_MainPlanApprove.OrderByDescending(x => x.ApproveDate).FirstOrDefault(x => x.MainPlanId == MainPlanId && x.ApproveType == state);
|
||||
}
|
||||
public static string GetHandleManName(string MainPlanId)
|
||||
{
|
||||
string name = string.Empty;
|
||||
var a= Funs.DB.Plan_MainPlanApprove.FirstOrDefault(x => x.MainPlanId == MainPlanId && x.ApproveDate == null);
|
||||
if (a != null)
|
||||
{
|
||||
name = BLL.Person_PersonsService.GetPersonsNameById(a.ApproveMan);
|
||||
}
|
||||
return name;
|
||||
}
|
||||
/// <summary>
|
||||
/// 修改总包施工计划审批信息
|
||||
/// </summary>
|
||||
|
||||
Reference in New Issue
Block a user