20220914 合同修改评审小组名单审批表不显示名字

This commit is contained in:
李鹏飞 2022-09-14 23:26:49 +08:00
parent 909300835e
commit 0337f086a7
2 changed files with 13 additions and 1 deletions

View File

@ -24,7 +24,17 @@ namespace BLL
Model.PHTGL_BidApproveUserReview_Sch1 table = new Model.PHTGL_BidApproveUserReview_Sch1();
table.ID = newtable.ID;
table.ApproveUserReviewID = newtable.ApproveUserReviewID;
table.ApproveUserName = newtable.ApproveUserName;
var name= BLL.Person_PersonsService.GetPersonsNameById(newtable.ApproveUserName);
if (!string.IsNullOrEmpty(name))
{
table.ApproveUserName = name;
}
else
{
table.ApproveUserName = newtable.ApproveUserName;
}
table.ApproveUserSpecial = newtable.ApproveUserSpecial;
table.ApproveUserUnit = newtable.ApproveUserUnit;
table.Remarks = newtable.Remarks;

View File

@ -4,6 +4,7 @@ using System;
using System.Collections.Generic;
using System.Data;
using System.Data.SqlClient;
using System.Web.DynamicData;
namespace FineUIPro.Web.PHTGL.BiddingManagement
{
@ -211,6 +212,7 @@ namespace FineUIPro.Web.PHTGL.BiddingManagement
BLL.PHTGL_BidApproveUserReview_Sch1Service.DeletePHTGL_BidApproveUserReview_Sch1ByReviewID(newtable.ApproveUserReviewID);
JArray EditorArr = Grid1.GetMergedData();
if (EditorArr.Count > 0)
{