|
|
@@ -133,14 +133,10 @@ namespace Learun.Application.Web.Areas.EducationalAdministration.Controllers |
|
|
|
// empInfo.NationalityNo = nationality.Rows[0][1].ToString(); |
|
|
|
//} |
|
|
|
//政治面貌 |
|
|
|
empInfo.PartyFaceNo = dataItemIBLL.GetDetailList("BCdPartyFace").FirstOrDefault(x => x.F_ItemValue == empInfo.PartyFaceNo)?.F_ItemName; |
|
|
|
|
|
|
|
empInfo.PartyFaceNo = dataItemIBLL.GetDetailList("PolityStatus").FirstOrDefault(x => x.F_ItemValue == empInfo.PartyFaceNo)?.F_ItemName; |
|
|
|
|
|
|
|
//最高学历 |
|
|
|
var highestRecord = dataSourceIBLL.GetDataTable("BCdCultureDegree", "t.CultureDegreeNo='" + empInfo.HighestRecord + "'"); |
|
|
|
if (highestRecord != null && highestRecord.Rows.Count > 0) |
|
|
|
{ |
|
|
|
empInfo.HighestRecord = highestRecord.Rows[0][1].ToString(); |
|
|
|
} |
|
|
|
empInfo.HighestRecord = dataItemIBLL.GetDetailList("RecordInSchool").FirstOrDefault(x => x.F_ItemValue == empInfo.HighestRecord)?.F_ItemName; |
|
|
|
//头像 |
|
|
|
empInfo.Photo = annexesFileIBLL.GetEntityByFolderId(empInfo.Photo)?.F_FilePath; |
|
|
|
if (!string.IsNullOrEmpty(empInfo.Photo)) |
|
|
|