20240331 质量月报
This commit is contained in:
@@ -22,15 +22,15 @@ namespace FineUIPro.Web.TestRun.Meeting
|
||||
if (data != null)
|
||||
{
|
||||
this.hdId.Text = id;
|
||||
this.txtMeetingCode.Text = data.MeetingCode;
|
||||
this.txtMeetingDate.Text = data.MeetingDate.HasValue ? string.Format("{0:yyyy-MM-dd}", data.MeetingDate) : "";
|
||||
//this.txtMeetingCode.Text = data.MeetingCode;
|
||||
//this.txtMeetingDate.Text = data.MeetingDate.HasValue ? string.Format("{0:yyyy-MM-dd}", data.MeetingDate) : "";
|
||||
this.txtMeetingAddress.Text = data.MeetingAddress;
|
||||
this.txtMeetingUrl.Text = data.AttachUrl;
|
||||
if (!string.IsNullOrEmpty(data.CompileMan))
|
||||
{
|
||||
this.drpCompileMan.SelectedValue = data.CompileMan;
|
||||
}
|
||||
this.txtCompileDate.Text = data.CompileDate.HasValue ? string.Format("{0:yyyy-MM-dd}", data.CompileDate) : "";
|
||||
//this.txtMeetingUrl.Text = data.AttachUrl;
|
||||
//if (!string.IsNullOrEmpty(data.CompileMan))
|
||||
//{
|
||||
// this.drpCompileMan.SelectedValue = data.CompileMan;
|
||||
//}
|
||||
//this.txtCompileDate.Text = data.CompileDate.HasValue ? string.Format("{0:yyyy-MM-dd}", data.CompileDate) : "";
|
||||
}
|
||||
}
|
||||
InitMenuTree();
|
||||
@@ -120,25 +120,25 @@ namespace FineUIPro.Web.TestRun.Meeting
|
||||
chidNode.Checked = true;
|
||||
chidNode.Expanded = true;
|
||||
chidNode.Selectable = true;
|
||||
var meeting = BLL.MeetingService.GetMeetingById(this.hdId.Text.Trim());
|
||||
if (meeting != null)
|
||||
{
|
||||
if (meeting.States == "2")
|
||||
{
|
||||
if (i.IsMeeting == true)
|
||||
{
|
||||
chidNode.Text = item.Text + "(可按时参加)";
|
||||
}
|
||||
else if (i.IsMeeting == false)
|
||||
{
|
||||
chidNode.Text = item.Text + "(因故不参加:" + i.Feedback + ")";
|
||||
}
|
||||
else
|
||||
{
|
||||
chidNode.Text = item.Text + "(暂未反馈)";
|
||||
}
|
||||
}
|
||||
}
|
||||
//var meeting = BLL.MeetingService.GetMeetingById(this.hdId.Text.Trim());
|
||||
//if (meeting != null)
|
||||
//{
|
||||
// if (meeting.States == "2")
|
||||
// {
|
||||
// if (i.IsMeeting == true)
|
||||
// {
|
||||
// chidNode.Text = item.Text + "(可按时参加)";
|
||||
// }
|
||||
// else if (i.IsMeeting == false)
|
||||
// {
|
||||
// chidNode.Text = item.Text + "(因故不参加:" + i.Feedback + ")";
|
||||
// }
|
||||
// else
|
||||
// {
|
||||
// chidNode.Text = item.Text + "(暂未反馈)";
|
||||
// }
|
||||
// }
|
||||
//}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user