20220601 修改Global调用定时器、修改考勤导入列表及导入方法
This commit is contained in:
@@ -270,8 +270,8 @@ namespace FineUIPro.Web.ZHGL.RealName
|
||||
{
|
||||
foreach (var item in getList)
|
||||
{
|
||||
message += ("项目" + getRProjects.ProCode + "新增" + BLL.SynchroSetService.PushPersonsByIdentityCard(Const.BtnAdd, getRProjects.ProCode, item) ?? "");
|
||||
message += ("|更新" + BLL.SynchroSetService.PushPersonsByIdentityCard(Const.BtnModify, getRProjects.ProCode, item) ?? "");
|
||||
message += ("项目" + getRProjects.ProCode + "新增" + BLL.SynchroSetService.PushPersonsByIdentityCard(Const.BtnAdd, getRProjects.ProCode, item, true) ?? "");
|
||||
message += ("|更新" + BLL.SynchroSetService.PushPersonsByIdentityCard(Const.BtnModify, getRProjects.ProCode, item, true) ?? "");
|
||||
}
|
||||
ShowNotify(message, MessageBoxIcon.Information);
|
||||
}
|
||||
@@ -432,7 +432,7 @@ namespace FineUIPro.Web.ZHGL.RealName
|
||||
select x.IdentityCard).Take(500);
|
||||
foreach (var item in getIdentityCards)
|
||||
{
|
||||
string mes = BLL.SynchroSetService.PushPersonsByIdentityCard(Const.BtnAdd, getRProjects.ProCode, item) ?? "";
|
||||
string mes = BLL.SynchroSetService.PushPersonsByIdentityCard(Const.BtnAdd, getRProjects.ProCode, item, true) ?? "";
|
||||
if (mes.Contains("不合法"))
|
||||
{
|
||||
message += ("身份证号码" + item + "新增失败" + mes);
|
||||
@@ -482,7 +482,7 @@ namespace FineUIPro.Web.ZHGL.RealName
|
||||
select x.IdentityCard).Take(100);
|
||||
foreach (var item in getIdentityCards)
|
||||
{
|
||||
string mes = BLL.SynchroSetService.PushPersonsByIdentityCard(Const.BtnModify, getRProjects.ProCode, item) ?? "";
|
||||
string mes = BLL.SynchroSetService.PushPersonsByIdentityCard(Const.BtnModify, getRProjects.ProCode, item, true) ?? "";
|
||||
if (mes.Contains("不合法"))
|
||||
{
|
||||
message += ("身份证号码" + item + "更新失败" + mes);
|
||||
|
||||
Reference in New Issue
Block a user