提交代码
This commit is contained in:
@@ -87,6 +87,10 @@
|
||||
#endregion
|
||||
|
||||
#region 获取审核记录信息
|
||||
public string FlowOperateId1;
|
||||
public string FlowOperateId2;
|
||||
public string FlowOperateId3;
|
||||
public string FlowOperateId4;
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
@@ -98,6 +102,7 @@
|
||||
var getF1 = getFlows.FirstOrDefault(x => x.SortIndex == 1);
|
||||
if (getF1 != null)
|
||||
{
|
||||
FlowOperateId1 = getF1.FlowOperateId;
|
||||
this.txtForm1.Title = getF1.AuditFlowName + ":";
|
||||
if (getF1.OperaterTime.HasValue)
|
||||
{
|
||||
@@ -109,13 +114,23 @@
|
||||
{
|
||||
this.txtOpinion1.Text = getF1.Opinion;
|
||||
}
|
||||
this.txtName1.Text = UserService.GetUserNameByUserId(getF1.OperaterId);
|
||||
if (!string.IsNullOrEmpty(getF1.SignatureUrl))
|
||||
{
|
||||
this.Image1.ImageUrl = "~/" + getF1.SignatureUrl;
|
||||
}
|
||||
var signUser1 = UserService.GetUserByUserId(getF1.OperaterId);
|
||||
if (signUser1 != null)
|
||||
{
|
||||
this.txtName1.Text = signUser1.UserName;
|
||||
}
|
||||
this.txtTime1.Text = string.Format("{0:yyyy-MM-dd HH:mm}", getF1.OperaterTime);
|
||||
}
|
||||
}
|
||||
var getF2 = getFlows.FirstOrDefault(x => x.SortIndex == 2);
|
||||
if (getF2 != null)
|
||||
{
|
||||
FlowOperateId2 = getF2.FlowOperateId;
|
||||
|
||||
this.txtForm2.Title = getF2.AuditFlowName + ":";
|
||||
if (getF2.OperaterTime.HasValue)
|
||||
{
|
||||
@@ -127,13 +142,24 @@
|
||||
{
|
||||
this.txtOpinion2.Text = getF2.Opinion;
|
||||
}
|
||||
this.txtName2.Text = UserService.GetUserNameByUserId(getF2.OperaterId);
|
||||
if (!string.IsNullOrEmpty(getF2.SignatureUrl))
|
||||
{
|
||||
this.Image2.ImageUrl = "~/" + getF2.SignatureUrl;
|
||||
}
|
||||
var signUser2 = UserService.GetUserByUserId(getF2.OperaterId);
|
||||
if (signUser2 != null)
|
||||
{
|
||||
this.txtName2.Text = signUser2.UserName;
|
||||
|
||||
}
|
||||
this.txtTime2.Text = string.Format("{0:yyyy-MM-dd HH:mm}", getF2.OperaterTime);
|
||||
}
|
||||
}
|
||||
var getF3 = getFlows.FirstOrDefault(x => x.SortIndex == 3);
|
||||
if (getF3 != null)
|
||||
{
|
||||
FlowOperateId3 = getF3.FlowOperateId;
|
||||
|
||||
this.txtForm3.Title = getF3.AuditFlowName + ":";
|
||||
if (getF3.OperaterTime.HasValue)
|
||||
{
|
||||
@@ -145,13 +171,24 @@
|
||||
{
|
||||
this.txtOpinion3.Text = getF3.Opinion;
|
||||
}
|
||||
this.txtName3.Text = UserService.GetUserNameByUserId(getF3.OperaterId);
|
||||
if (!string.IsNullOrEmpty(getF3.SignatureUrl))
|
||||
{
|
||||
this.Image3.ImageUrl = "~/" + getF3.SignatureUrl;
|
||||
}
|
||||
|
||||
var signUser3 = UserService.GetUserByUserId(getF3.OperaterId);
|
||||
if (signUser3 != null)
|
||||
{
|
||||
this.txtName3.Text = signUser3.UserName;
|
||||
}
|
||||
this.txtTime3.Text = string.Format("{0:yyyy-MM-dd HH:mm}", getF3.OperaterTime);
|
||||
}
|
||||
}
|
||||
var getF4 = getFlows.FirstOrDefault(x => x.SortIndex == 4);
|
||||
if (getF4 != null)
|
||||
{
|
||||
FlowOperateId4 = getF4.FlowOperateId;
|
||||
|
||||
this.txtForm4.Title = getF4.AuditFlowName + ":";
|
||||
if (getF4.OperaterTime.HasValue)
|
||||
{
|
||||
@@ -163,46 +200,19 @@
|
||||
{
|
||||
this.txtOpinion4.Text = getF4.Opinion;
|
||||
}
|
||||
this.txtName4.Text = UserService.GetUserNameByUserId(getF4.OperaterId);
|
||||
if (!string.IsNullOrEmpty(getF4.SignatureUrl))
|
||||
{
|
||||
this.Image4.ImageUrl = "~/" + getF4.SignatureUrl;
|
||||
}
|
||||
|
||||
var signUser4 = UserService.GetUserByUserId(getF4.OperaterId);
|
||||
if (signUser4 != null)
|
||||
{
|
||||
this.txtName4.Text = signUser4.UserName;
|
||||
}
|
||||
this.txtTime4.Text = string.Format("{0:yyyy-MM-dd HH:mm}", getF4.OperaterTime);
|
||||
}
|
||||
}
|
||||
var getF5 = getFlows.FirstOrDefault(x => x.SortIndex == 5);
|
||||
if (getF5 != null)
|
||||
{
|
||||
this.txtForm5.Title = getF5.AuditFlowName + ":";
|
||||
if (getF5.OperaterTime.HasValue)
|
||||
{
|
||||
if (getF5.IsAgree == true)
|
||||
{
|
||||
this.txtOpinion5.Text = "同意。";
|
||||
}
|
||||
else
|
||||
{
|
||||
this.txtOpinion5.Text = getF5.Opinion;
|
||||
}
|
||||
this.txtName5.Text = UserService.GetUserNameByUserId(getF5.OperaterId);
|
||||
this.txtTime5.Text = string.Format("{0:yyyy-MM-dd HH:mm}", getF5.OperaterTime);
|
||||
}
|
||||
}
|
||||
var getF6 = getFlows.FirstOrDefault(x => x.SortIndex == 6);
|
||||
if (getF6 != null)
|
||||
{
|
||||
this.txtForm6.Title = getF6.AuditFlowName + ":";
|
||||
if (getF6.OperaterTime.HasValue)
|
||||
{
|
||||
if (getF6.IsAgree == true)
|
||||
{
|
||||
this.txtOpinion6.Text = "同意。";
|
||||
}
|
||||
else
|
||||
{
|
||||
this.txtOpinion6.Text = getF6.Opinion;
|
||||
}
|
||||
this.txtName6.Text = UserService.GetUserNameByUserId(getF6.OperaterId);
|
||||
this.txtTime6.Text = string.Format("{0:yyyy-MM-dd HH:mm}", getF6.OperaterTime);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
#endregion
|
||||
|
||||
Reference in New Issue
Block a user