20240331 质量月报

This commit is contained in:
2024-03-31 01:12:53 +08:00
parent 1791d28bde
commit 4aa229ef1f
54 changed files with 6959 additions and 1709 deletions
@@ -267,34 +267,34 @@ namespace FineUIPro.Web.TestRun.Meeting
Alert.ShowInTop("请至少选择一条记录", MessageBoxIcon.Warning);
return;
}
var meeting = BLL.MeetingService.GetMeetingById(Grid1.SelectedRowID);
if (meeting.States == "2")
{
var items = BLL.MeetingItemService.GetMeetingItemByMeetingId(Grid1.SelectedRowID);
if (items.Count > 0)
{
var user = items.Where(x => x.UserId == this.CurrUser.UserId);
if (user.Count() > 0)
{
PageContext.RegisterStartupScript(Window2.GetShowReference(String.Format("Feedback.aspx?id={0}", Grid1.SelectedRowID, "编辑 - ")));
}
else
{
Alert.ShowInTop("未参与此会议,无需反馈!", MessageBoxIcon.Warning);
return;
}
}
else
{
Alert.ShowInTop("未参与此会议,无需反馈!", MessageBoxIcon.Warning);
return;
}
}
else
{
Alert.ShowInTop("审核未完成,无需反馈!", MessageBoxIcon.Warning);
return;
}
//var meeting = BLL.MeetingService.GetMeetingById(Grid1.SelectedRowID);
//if (meeting.States == "2")
//{
// var items = BLL.MeetingItemService.GetMeetingItemByMeetingId(Grid1.SelectedRowID);
// if (items.Count > 0)
// {
// var user = items.Where(x => x.UserId == this.CurrUser.UserId);
// if (user.Count() > 0)
// {
// PageContext.RegisterStartupScript(Window2.GetShowReference(String.Format("Feedback.aspx?id={0}", Grid1.SelectedRowID, "编辑 - ")));
// }
// else
// {
// Alert.ShowInTop("未参与此会议,无需反馈!", MessageBoxIcon.Warning);
// return;
// }
// }
// else
// {
// Alert.ShowInTop("未参与此会议,无需反馈!", MessageBoxIcon.Warning);
// return;
// }
//}
//else
//{
// Alert.ShowInTop("审核未完成,无需反馈!", MessageBoxIcon.Warning);
// return;
//}
}
#endregion
}