diff --git a/03-程式設計階段/OPMS/OT.Web/Page/Hr/AttendanceCheck_Qry.aspx.cs b/03-程式設計階段/OPMS/OT.Web/Page/Hr/AttendanceCheck_Qry.aspx.cs index b11d9a5..a33b769 100644 --- a/03-程式設計階段/OPMS/OT.Web/Page/Hr/AttendanceCheck_Qry.aspx.cs +++ b/03-程式設計階段/OPMS/OT.Web/Page/Hr/AttendanceCheck_Qry.aspx.cs @@ -242,7 +242,7 @@ namespace OT.Web.Page.HR { if (strSignTime == "---" || (int.Parse(strSignTime.Split(':')[0]) > int.Parse(strTimeS.Split(':')[0])) || (int.Parse(strSignTime.Split(':')[0]) == int.Parse(strTimeS.Split(':')[0]) && int.Parse(strSignTime.Split(':')[1]) > int.Parse(strTimeS.Split(':')[1]))) { - e.Row.Cells[3].Attributes.Add("style", "color:red;"); + e.Row.Cells[3].Attributes.Add("style", "color:blue;"); } } else @@ -254,7 +254,7 @@ namespace OT.Web.Page.HR { if (strSignOutTime == "---" || (int.Parse(strSignOutTime.Split(':')[0]) < int.Parse(strTimeE.Split(':')[0])) || (int.Parse(strSignOutTime.Split(':')[0]) == int.Parse(strTimeE.Split(':')[0]) && int.Parse(strSignOutTime.Split(':')[1]) < int.Parse(strTimeE.Split(':')[1]))) { - e.Row.Cells[5].Attributes.Add("style", "color:red;"); + e.Row.Cells[5].Attributes.Add("style", "color:blue;"); } } else