20220320 修改项目单位同步实名制 根据设置是否同步标识
This commit is contained in:
@@ -31,159 +31,161 @@ namespace BLL
|
||||
{
|
||||
if (drecord.DateTimeRecord.HasValue)
|
||||
{
|
||||
Model.T_d_EmployInOutRecord newInOutRecord = new Model.T_d_EmployInOutRecord
|
||||
using (Model.SGGLDB db = new Model.SGGLDB(Funs.ConnString))
|
||||
{
|
||||
NewID = SQLHelper.GetNewID(),
|
||||
ProjectId = drecord.ProjectId,
|
||||
InstallationName = ProjectService.GetProjectNameByProjectId(drecord.ProjectId),
|
||||
RecordDate = drecord.DateTimeRecord.Value.Date,
|
||||
IDCardNo = drecord.IDCardNo,
|
||||
};
|
||||
////获取人员
|
||||
var getPserson = PersonService.GetPersonByIdentityCard(drecord.ProjectId, drecord.IDCardNo);
|
||||
if (getPserson == null)
|
||||
{
|
||||
getPserson = PersonService.GetPersonByName(drecord.ProjectId, drecord.EmployName);
|
||||
}
|
||||
if (getPserson != null)
|
||||
{
|
||||
newInOutRecord.UnitId = getPserson.UnitId;
|
||||
newInOutRecord.UnitName = UnitService.GetUnitNameByUnitId(getPserson.UnitId);
|
||||
newInOutRecord.DepartmentID = getPserson.TeamGroupId;
|
||||
newInOutRecord.DepartName = TeamGroupService.GetTeamGroupNameByTeamGroupId(getPserson.TeamGroupId);
|
||||
newInOutRecord.EmployNO = getPserson.CardNo;
|
||||
newInOutRecord.EmployName = getPserson.PersonName;
|
||||
newInOutRecord.Nation = getPserson.Nation;
|
||||
newInOutRecord.NationName = BasicDataService.GetDictNameByDictCode(getPserson.Nation);
|
||||
newInOutRecord.PostId = getPserson.WorkPostId;
|
||||
newInOutRecord.PostName = WorkPostService.getWorkPostNameById(getPserson.WorkPostId);
|
||||
}
|
||||
else
|
||||
{
|
||||
newInOutRecord.EmployName = drecord.EmployName;
|
||||
newInOutRecord.UnitId = null;
|
||||
newInOutRecord.PostId = null;
|
||||
}
|
||||
|
||||
#region 上下班时间
|
||||
///上午上班 8
|
||||
DateTime TWorkIn1 = drecord.DateTimeRecord.Value.Date.AddHours(8);
|
||||
///上午下班 12:30
|
||||
DateTime TOffDuty1 = drecord.DateTimeRecord.Value.Date.AddHours(12).AddMinutes(30);
|
||||
///下午上班 1:30
|
||||
DateTime TWorkIn2 = drecord.DateTimeRecord.Value.Date.AddHours(13).AddMinutes(30);
|
||||
///下午下班 7
|
||||
DateTime TOffDuty2 = drecord.DateTimeRecord.Value.Date.AddHours(19);
|
||||
if (drecord.InOrOut == "进门")
|
||||
{
|
||||
///上午上班
|
||||
if ( drecord.DateTimeRecord < TOffDuty1)
|
||||
Model.T_d_EmployInOutRecord newInOutRecord = new Model.T_d_EmployInOutRecord
|
||||
{
|
||||
newInOutRecord.WorkIn1 = drecord.DateTimeRecord;
|
||||
NewID = SQLHelper.GetNewID(),
|
||||
ProjectId = drecord.ProjectId,
|
||||
InstallationName = ProjectService.GetProjectNameByProjectId(drecord.ProjectId),
|
||||
RecordDate = drecord.DateTimeRecord.Value.Date,
|
||||
IDCardNo = drecord.IDCardNo,
|
||||
};
|
||||
////获取人员
|
||||
var getPserson = PersonService.GetPersonByIdentityCard(drecord.ProjectId, drecord.IDCardNo);
|
||||
if (getPserson == null)
|
||||
{
|
||||
getPserson = PersonService.GetPersonByName(drecord.ProjectId, drecord.EmployName);
|
||||
}
|
||||
else if ( drecord.DateTimeRecord < TOffDuty2)
|
||||
if (getPserson != null)
|
||||
{
|
||||
newInOutRecord.WorkIn2 = drecord.DateTimeRecord;
|
||||
newInOutRecord.UnitId = getPserson.UnitId;
|
||||
newInOutRecord.UnitName = UnitService.GetUnitNameByUnitId(getPserson.UnitId);
|
||||
newInOutRecord.DepartmentID = getPserson.TeamGroupId;
|
||||
newInOutRecord.DepartName = TeamGroupService.GetTeamGroupNameByTeamGroupId(getPserson.TeamGroupId);
|
||||
newInOutRecord.EmployNO = getPserson.CardNo;
|
||||
newInOutRecord.EmployName = getPserson.PersonName;
|
||||
newInOutRecord.Nation = getPserson.Nation;
|
||||
newInOutRecord.NationName = BasicDataService.GetDictNameByDictCode(getPserson.Nation);
|
||||
newInOutRecord.PostId = getPserson.WorkPostId;
|
||||
newInOutRecord.PostName = WorkPostService.getWorkPostNameById(getPserson.WorkPostId);
|
||||
}
|
||||
else
|
||||
{
|
||||
newInOutRecord.WorkIn3 = drecord.DateTimeRecord;
|
||||
newInOutRecord.EmployName = drecord.EmployName;
|
||||
newInOutRecord.UnitId = null;
|
||||
newInOutRecord.PostId = null;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
///上午下班
|
||||
if ( drecord.DateTimeRecord < TWorkIn2)
|
||||
|
||||
#region 上下班时间
|
||||
///上午上班 8
|
||||
DateTime TWorkIn1 = drecord.DateTimeRecord.Value.Date.AddHours(8);
|
||||
///上午下班 12:30
|
||||
DateTime TOffDuty1 = drecord.DateTimeRecord.Value.Date.AddHours(12).AddMinutes(30);
|
||||
///下午上班 1:30
|
||||
DateTime TWorkIn2 = drecord.DateTimeRecord.Value.Date.AddHours(13).AddMinutes(30);
|
||||
///下午下班 7
|
||||
DateTime TOffDuty2 = drecord.DateTimeRecord.Value.Date.AddHours(19);
|
||||
if (drecord.InOrOut == "进门")
|
||||
{
|
||||
newInOutRecord.OffDuty1 = drecord.DateTimeRecord;
|
||||
}
|
||||
else if ( drecord.DateTimeRecord < TOffDuty2.AddHours(1))
|
||||
{
|
||||
newInOutRecord.OffDuty2 = drecord.DateTimeRecord;
|
||||
///上午上班
|
||||
if (drecord.DateTimeRecord < TOffDuty1)
|
||||
{
|
||||
newInOutRecord.WorkIn1 = drecord.DateTimeRecord;
|
||||
}
|
||||
else if (drecord.DateTimeRecord < TOffDuty2)
|
||||
{
|
||||
newInOutRecord.WorkIn2 = drecord.DateTimeRecord;
|
||||
}
|
||||
else
|
||||
{
|
||||
newInOutRecord.WorkIn3 = drecord.DateTimeRecord;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
newInOutRecord.OffDuty3 = drecord.DateTimeRecord;
|
||||
}
|
||||
}
|
||||
#endregion
|
||||
|
||||
bool isInsert = false;
|
||||
var getInOutRecord = Funs.DB.T_d_EmployInOutRecord.FirstOrDefault(x => x.ProjectId == drecord.ProjectId && x.IDCardNo == drecord.IDCardNo && x.RecordDate == drecord.DateTimeRecord.Value.Date);
|
||||
if (getInOutRecord == null)
|
||||
{
|
||||
isInsert = true;
|
||||
}
|
||||
if (isInsert)
|
||||
{
|
||||
newInOutRecord.ManHours = 4;
|
||||
newInOutRecord.ManOverHours = 0;
|
||||
Funs.DB.T_d_EmployInOutRecord.InsertOnSubmit(newInOutRecord);
|
||||
Funs.DB.SubmitChanges();
|
||||
}
|
||||
else
|
||||
{
|
||||
#region 计算人工时
|
||||
if (newInOutRecord.WorkIn1.HasValue && (!getInOutRecord.WorkIn1.HasValue || getInOutRecord.WorkIn1 > newInOutRecord.WorkIn1))
|
||||
{
|
||||
getInOutRecord.WorkIn1 = newInOutRecord.WorkIn1;
|
||||
}
|
||||
if (newInOutRecord.WorkIn2.HasValue && (!getInOutRecord.WorkIn2.HasValue || getInOutRecord.WorkIn2 > newInOutRecord.WorkIn2))
|
||||
{
|
||||
getInOutRecord.WorkIn2 = newInOutRecord.WorkIn2;
|
||||
}
|
||||
if (newInOutRecord.WorkIn3.HasValue && (!getInOutRecord.WorkIn3.HasValue || getInOutRecord.WorkIn3 > newInOutRecord.WorkIn3))
|
||||
{
|
||||
getInOutRecord.WorkIn3 = newInOutRecord.WorkIn3;
|
||||
}
|
||||
|
||||
if (newInOutRecord.OffDuty1.HasValue && (!getInOutRecord.OffDuty1.HasValue || getInOutRecord.OffDuty1 < newInOutRecord.OffDuty1))
|
||||
{
|
||||
getInOutRecord.OffDuty1 = newInOutRecord.OffDuty1;
|
||||
}
|
||||
if (newInOutRecord.OffDuty2.HasValue && (!getInOutRecord.OffDuty2.HasValue || getInOutRecord.OffDuty2 < newInOutRecord.OffDuty2))
|
||||
{
|
||||
getInOutRecord.OffDuty2 = newInOutRecord.OffDuty2;
|
||||
}
|
||||
if (newInOutRecord.OffDuty3.HasValue && (!getInOutRecord.OffDuty3.HasValue || getInOutRecord.OffDuty3 < newInOutRecord.OffDuty3))
|
||||
{
|
||||
getInOutRecord.OffDuty3 = newInOutRecord.OffDuty3;
|
||||
}
|
||||
int m1 = 0;
|
||||
if (getInOutRecord.WorkIn1.HasValue || getInOutRecord.OffDuty1.HasValue)
|
||||
{
|
||||
m1 = 240;
|
||||
if (getInOutRecord.WorkIn1.HasValue && getInOutRecord.OffDuty1.HasValue)
|
||||
///上午下班
|
||||
if (drecord.DateTimeRecord < TWorkIn2)
|
||||
{
|
||||
m1 = Convert.ToInt32((getInOutRecord.OffDuty1 - getInOutRecord.WorkIn1).Value.TotalMinutes);
|
||||
newInOutRecord.OffDuty1 = drecord.DateTimeRecord;
|
||||
}
|
||||
}
|
||||
int m2 = 0;
|
||||
if (getInOutRecord.WorkIn2.HasValue || getInOutRecord.OffDuty2.HasValue)
|
||||
{
|
||||
m2 = 240;
|
||||
if (getInOutRecord.WorkIn2.HasValue && getInOutRecord.OffDuty2.HasValue)
|
||||
else if (drecord.DateTimeRecord < TOffDuty2.AddHours(1))
|
||||
{
|
||||
m2 = Convert.ToInt32((getInOutRecord.OffDuty2 - getInOutRecord.WorkIn2).Value.TotalMinutes);
|
||||
newInOutRecord.OffDuty2 = drecord.DateTimeRecord;
|
||||
}
|
||||
}
|
||||
int m3 = 0;
|
||||
if (getInOutRecord.WorkIn3.HasValue || getInOutRecord.OffDuty3.HasValue)
|
||||
{
|
||||
m3 = 240;
|
||||
if (getInOutRecord.WorkIn3.HasValue && getInOutRecord.OffDuty3.HasValue)
|
||||
else
|
||||
{
|
||||
m3 = Convert.ToInt32((getInOutRecord.OffDuty3 - getInOutRecord.WorkIn3).Value.TotalMinutes);
|
||||
newInOutRecord.OffDuty3 = drecord.DateTimeRecord;
|
||||
}
|
||||
}
|
||||
#endregion
|
||||
|
||||
getInOutRecord.ManHours = Convert.ToInt32(Math.Ceiling((m1 + m2 + m3) * 1.0 / 60));
|
||||
getInOutRecord.ManOverHours = Convert.ToInt32(Math.Ceiling(m3 * 1.0 / 60));
|
||||
Funs.DB.SubmitChanges();
|
||||
bool isInsert = false;
|
||||
var getInOutRecord = db.T_d_EmployInOutRecord.FirstOrDefault(x => x.ProjectId == drecord.ProjectId && x.IDCardNo == drecord.IDCardNo && x.RecordDate == drecord.DateTimeRecord.Value.Date);
|
||||
if (getInOutRecord == null)
|
||||
{
|
||||
isInsert = true;
|
||||
}
|
||||
if (isInsert)
|
||||
{
|
||||
newInOutRecord.ManHours = 4;
|
||||
newInOutRecord.ManOverHours = 0;
|
||||
db.T_d_EmployInOutRecord.InsertOnSubmit(newInOutRecord);
|
||||
db.SubmitChanges();
|
||||
}
|
||||
else
|
||||
{
|
||||
#region 计算人工时
|
||||
if (newInOutRecord.WorkIn1.HasValue && (!getInOutRecord.WorkIn1.HasValue || getInOutRecord.WorkIn1 > newInOutRecord.WorkIn1))
|
||||
{
|
||||
getInOutRecord.WorkIn1 = newInOutRecord.WorkIn1;
|
||||
}
|
||||
if (newInOutRecord.WorkIn2.HasValue && (!getInOutRecord.WorkIn2.HasValue || getInOutRecord.WorkIn2 > newInOutRecord.WorkIn2))
|
||||
{
|
||||
getInOutRecord.WorkIn2 = newInOutRecord.WorkIn2;
|
||||
}
|
||||
if (newInOutRecord.WorkIn3.HasValue && (!getInOutRecord.WorkIn3.HasValue || getInOutRecord.WorkIn3 > newInOutRecord.WorkIn3))
|
||||
{
|
||||
getInOutRecord.WorkIn3 = newInOutRecord.WorkIn3;
|
||||
}
|
||||
|
||||
if (newInOutRecord.OffDuty1.HasValue && (!getInOutRecord.OffDuty1.HasValue || getInOutRecord.OffDuty1 < newInOutRecord.OffDuty1))
|
||||
{
|
||||
getInOutRecord.OffDuty1 = newInOutRecord.OffDuty1;
|
||||
}
|
||||
if (newInOutRecord.OffDuty2.HasValue && (!getInOutRecord.OffDuty2.HasValue || getInOutRecord.OffDuty2 < newInOutRecord.OffDuty2))
|
||||
{
|
||||
getInOutRecord.OffDuty2 = newInOutRecord.OffDuty2;
|
||||
}
|
||||
if (newInOutRecord.OffDuty3.HasValue && (!getInOutRecord.OffDuty3.HasValue || getInOutRecord.OffDuty3 < newInOutRecord.OffDuty3))
|
||||
{
|
||||
getInOutRecord.OffDuty3 = newInOutRecord.OffDuty3;
|
||||
}
|
||||
int m1 = 0;
|
||||
if (getInOutRecord.WorkIn1.HasValue || getInOutRecord.OffDuty1.HasValue)
|
||||
{
|
||||
m1 = 240;
|
||||
if (getInOutRecord.WorkIn1.HasValue && getInOutRecord.OffDuty1.HasValue)
|
||||
{
|
||||
m1 = Convert.ToInt32((getInOutRecord.OffDuty1 - getInOutRecord.WorkIn1).Value.TotalMinutes);
|
||||
}
|
||||
}
|
||||
int m2 = 0;
|
||||
if (getInOutRecord.WorkIn2.HasValue || getInOutRecord.OffDuty2.HasValue)
|
||||
{
|
||||
m2 = 240;
|
||||
if (getInOutRecord.WorkIn2.HasValue && getInOutRecord.OffDuty2.HasValue)
|
||||
{
|
||||
m2 = Convert.ToInt32((getInOutRecord.OffDuty2 - getInOutRecord.WorkIn2).Value.TotalMinutes);
|
||||
}
|
||||
}
|
||||
int m3 = 0;
|
||||
if (getInOutRecord.WorkIn3.HasValue || getInOutRecord.OffDuty3.HasValue)
|
||||
{
|
||||
m3 = 240;
|
||||
if (getInOutRecord.WorkIn3.HasValue && getInOutRecord.OffDuty3.HasValue)
|
||||
{
|
||||
m3 = Convert.ToInt32((getInOutRecord.OffDuty3 - getInOutRecord.WorkIn3).Value.TotalMinutes);
|
||||
}
|
||||
}
|
||||
#endregion
|
||||
|
||||
getInOutRecord.ManHours = Convert.ToInt32(Math.Ceiling((m1 + m2 + m3) * 1.0 / 60));
|
||||
getInOutRecord.ManOverHours = Convert.ToInt32(Math.Ceiling(m3 * 1.0 / 60));
|
||||
db.SubmitChanges();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
#endregion
|
||||
|
||||
@@ -194,22 +196,25 @@ namespace BLL
|
||||
/// <returns></returns>
|
||||
public static Model.T_d_department GetSupDep(string projectId, int? departmentID, int ParentID)
|
||||
{
|
||||
var getDep = Funs.DB.T_d_department.FirstOrDefault(x => x.ProjectId == projectId && x.DepartmentID == departmentID);
|
||||
if (getDep != null)
|
||||
using (Model.SGGLDB db = new Model.SGGLDB(Funs.ConnString))
|
||||
{
|
||||
if (getDep.ParentID == ParentID)
|
||||
var getDep =db.T_d_department.FirstOrDefault(x => x.ProjectId == projectId && x.DepartmentID == departmentID);
|
||||
if (getDep != null)
|
||||
{
|
||||
return getDep;
|
||||
if (getDep.ParentID == ParentID)
|
||||
{
|
||||
return getDep;
|
||||
}
|
||||
else
|
||||
{
|
||||
return GetSupDep(projectId, getDep.ParentID, ParentID);
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
return GetSupDep(projectId, getDep.ParentID, ParentID);
|
||||
return null;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
#endregion
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user