This commit is contained in:
parent
15fa506804
commit
06c34bf0d6
|
|
@ -18538,7 +18538,7 @@
|
||||||
</FlavorProperties>
|
</FlavorProperties>
|
||||||
</VisualStudio>
|
</VisualStudio>
|
||||||
</ProjectExtensions>
|
</ProjectExtensions>
|
||||||
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v17.0\WebApplications\Microsoft.WebApplication.targets" />
|
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v18.0\WebApplications\Microsoft.WebApplication.targets" />
|
||||||
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
||||||
Other similar extension points exist, see Microsoft.Common.targets.
|
Other similar extension points exist, see Microsoft.Common.targets.
|
||||||
<Target Name="BeforeBuild">
|
<Target Name="BeforeBuild">
|
||||||
|
|
|
||||||
|
|
@ -335,10 +335,17 @@ namespace FineUIPro.Web.HSSE.SitePerson
|
||||||
if (!string.IsNullOrEmpty(birthDateStr))
|
if (!string.IsNullOrEmpty(birthDateStr))
|
||||||
{
|
{
|
||||||
// 解析日期字符串为DateTime对象
|
// 解析日期字符串为DateTime对象
|
||||||
var birthDate = DateTime.ParseExact(birthDateStr, "yyyyMMdd", null);
|
try
|
||||||
if (birthDate.AddYears(60) < DateTime.Now)
|
|
||||||
{
|
{
|
||||||
Grid1.Rows[i].RowCssClass = "Yellow";
|
var birthDate = DateTime.ParseExact(birthDateStr, "yyyyMMdd", null);
|
||||||
|
if (birthDate.AddYears(60) < DateTime.Now)
|
||||||
|
{
|
||||||
|
Grid1.Rows[i].RowCssClass = "Yellow";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
ErrLogInfo.WriteLog($"{person.PersonName}身份证号码异常:{idCard};");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -751,7 +758,7 @@ namespace FineUIPro.Web.HSSE.SitePerson
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
|
|
||||||
#region 批量审核
|
#region 批量审核
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 批量审核
|
/// 批量审核
|
||||||
|
|
@ -779,7 +786,7 @@ namespace FineUIPro.Web.HSSE.SitePerson
|
||||||
ShowNotify("操作完成!", MessageBoxIcon.Success);
|
ShowNotify("操作完成!", MessageBoxIcon.Success);
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region 查询
|
#region 查询
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 查询
|
/// 查询
|
||||||
|
|
@ -1025,22 +1032,22 @@ namespace FineUIPro.Web.HSSE.SitePerson
|
||||||
|
|
||||||
var gTrainingTestRecord =
|
var gTrainingTestRecord =
|
||||||
(from x in Funs.DB.Training_TestRecord
|
(from x in Funs.DB.Training_TestRecord
|
||||||
join TestPlan in Funs.DB.Training_TestPlan on x.TestPlanId equals TestPlan.TestPlanId into
|
join TestPlan in Funs.DB.Training_TestPlan on x.TestPlanId equals TestPlan.TestPlanId into
|
||||||
gTestPlan
|
gTestPlan
|
||||||
from TestPlan in gTestPlan.DefaultIfEmpty()
|
from TestPlan in gTestPlan.DefaultIfEmpty()
|
||||||
join user in Funs.DB.Sys_User on TestPlan.PlanManId equals user.UserId into gUser
|
join user in Funs.DB.Sys_User on TestPlan.PlanManId equals user.UserId into gUser
|
||||||
from user in gUser.DefaultIfEmpty()
|
from user in gUser.DefaultIfEmpty()
|
||||||
where x.TestManId == person.PersonId && x.TestScores >= 70 && x.ProjectId == CurrUser.LoginProjectId
|
where x.TestManId == person.PersonId && x.TestScores >= 70 && x.ProjectId == CurrUser.LoginProjectId
|
||||||
orderby x.TestEndTime descending
|
orderby x.TestEndTime descending
|
||||||
select new
|
select new
|
||||||
{
|
{
|
||||||
TestRecordId = x.TestRecordId,
|
TestRecordId = x.TestRecordId,
|
||||||
TestStartTime = x.TestStartTime,
|
TestStartTime = x.TestStartTime,
|
||||||
TestEndTime = x.TestEndTime,
|
TestEndTime = x.TestEndTime,
|
||||||
Signature = x.Signature,
|
Signature = x.Signature,
|
||||||
TestScores = x.TestScores,
|
TestScores = x.TestScores,
|
||||||
PlanManName = user == null ? "" : user.UserName
|
PlanManName = user == null ? "" : user.UserName
|
||||||
}).FirstOrDefault();
|
}).FirstOrDefault();
|
||||||
|
|
||||||
string date1 = "";
|
string date1 = "";
|
||||||
string date11 = "";
|
string date11 = "";
|
||||||
|
|
@ -1087,8 +1094,8 @@ namespace FineUIPro.Web.HSSE.SitePerson
|
||||||
workPostName = WorkPostService.getWorkPostNamesWorkPostIds(person.WorkPostId);
|
workPostName = WorkPostService.getWorkPostNamesWorkPostIds(person.WorkPostId);
|
||||||
// sysTestRule = Funs.DB.Sys_TestRule.FirstOrDefault();
|
// sysTestRule = Funs.DB.Sys_TestRule.FirstOrDefault();
|
||||||
getTestItems = from x in Funs.DB.Training_TestRecordItem
|
getTestItems = from x in Funs.DB.Training_TestRecordItem
|
||||||
where x.TestRecordId == gTrainingTestRecord.TestRecordId
|
where x.TestRecordId == gTrainingTestRecord.TestRecordId
|
||||||
select x;
|
select x;
|
||||||
getSingleItem = getTestItems.Where(x => x.TestType == "1").ToList();
|
getSingleItem = getTestItems.Where(x => x.TestType == "1").ToList();
|
||||||
// SValue = sysTestRule.SValue; //每题分数
|
// SValue = sysTestRule.SValue; //每题分数
|
||||||
// SValueCount = sysTestRule.SValue * getSingleItem.Count; //总分
|
// SValueCount = sysTestRule.SValue * getSingleItem.Count; //总分
|
||||||
|
|
@ -1128,14 +1135,14 @@ namespace FineUIPro.Web.HSSE.SitePerson
|
||||||
dt = dt.AddDays(2);
|
dt = dt.AddDays(2);
|
||||||
date1 = string.Format("{0:yyyy年MM月dd日}", dt);
|
date1 = string.Format("{0:yyyy年MM月dd日}", dt);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!string.IsNullOrEmpty(date1))
|
if (!string.IsNullOrEmpty(date1))
|
||||||
{
|
{
|
||||||
DateTime dt = DateTime.Parse(date1);
|
DateTime dt = DateTime.Parse(date1);
|
||||||
dt = dt.AddDays(2);
|
dt = dt.AddDays(2);
|
||||||
date11 = string.Format("{0:yyyy年MM月dd日}", dt);
|
date11 = string.Format("{0:yyyy年MM月dd日}", dt);
|
||||||
}
|
}
|
||||||
|
|
||||||
string sign2 = AttachFileService.getFileUrl(person.PersonId + "_2");
|
string sign2 = AttachFileService.getFileUrl(person.PersonId + "_2");
|
||||||
if (!string.IsNullOrEmpty(sign2))
|
if (!string.IsNullOrEmpty(sign2))
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue