20220914 合同修改评审小组名单审批表不显示名字
This commit is contained in:
parent
909300835e
commit
0337f086a7
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in New Issue