|
|
@@ -498,13 +498,38 @@ namespace Learun.Application.TwoDevelopment.EducationalAdministration |
|
|
|
var url = AppDomain.CurrentDomain.BaseDirectory; |
|
|
|
foreach (var stuInfo in stuList) |
|
|
|
{ |
|
|
|
//照片不为空 |
|
|
|
if (!string.IsNullOrEmpty(stuInfo.Photo)) |
|
|
|
//判断要上传的照片在本地服务器中是否存在 |
|
|
|
var photoPath = $"{url}/Resource/UserPhoto/{stuInfo.IdentityCardNo}.jpg"; |
|
|
|
if (System.IO.File.Exists(photoPath)) |
|
|
|
{ |
|
|
|
var annex = this.BaseRepository() |
|
|
|
.FindEntity<AnnexesFileEntity>(a => a.F_FolderId == stuInfo.Photo); |
|
|
|
if (annex == null) |
|
|
|
//学籍表中照片字段不为空 |
|
|
|
if (!string.IsNullOrEmpty(stuInfo.Photo)) |
|
|
|
{ |
|
|
|
var annex = this.BaseRepository() |
|
|
|
.FindEntity<AnnexesFileEntity>(a => a.F_FolderId == stuInfo.Photo); |
|
|
|
if (annex == null) |
|
|
|
{ |
|
|
|
var annexEntity = new AnnexesFileEntity() |
|
|
|
{ |
|
|
|
F_Id = Guid.NewGuid().ToString(), |
|
|
|
F_FileName = stuInfo.IdentityCardNo + ".jpg", |
|
|
|
F_FilePath = $"{url}/Resource/UserPhoto/{stuInfo.IdentityCardNo}.jpg", |
|
|
|
F_FolderId = stuInfo.Photo |
|
|
|
}; |
|
|
|
this.BaseRepository().Insert(annexEntity); |
|
|
|
|
|
|
|
} |
|
|
|
else |
|
|
|
{ |
|
|
|
annex.F_FileName = stuInfo.IdentityCardNo + ".jpg"; |
|
|
|
annex.F_FilePath = $"{url}/Resource/UserPhoto/{stuInfo.IdentityCardNo}.jpg"; |
|
|
|
this.BaseRepository().Update(annex); |
|
|
|
} |
|
|
|
} |
|
|
|
else |
|
|
|
{ |
|
|
|
stuInfo.Photo = Guid.NewGuid().ToString(); |
|
|
|
|
|
|
|
var annexEntity = new AnnexesFileEntity() |
|
|
|
{ |
|
|
|
F_Id = Guid.NewGuid().ToString(), |
|
|
@@ -512,32 +537,12 @@ namespace Learun.Application.TwoDevelopment.EducationalAdministration |
|
|
|
F_FilePath = $"{url}/Resource/UserPhoto/{stuInfo.IdentityCardNo}.jpg", |
|
|
|
F_FolderId = stuInfo.Photo |
|
|
|
}; |
|
|
|
annexEntity.Create(); |
|
|
|
this.BaseRepository("CollegeMIS").Update(stuInfo); |
|
|
|
this.BaseRepository().Insert(annexEntity); |
|
|
|
|
|
|
|
} |
|
|
|
else |
|
|
|
{ |
|
|
|
annex.F_FileName = stuInfo.IdentityCardNo + ".jpg"; |
|
|
|
annex.F_FilePath = $"{url}/Resource/UserPhoto/{stuInfo.IdentityCardNo}.jpg"; |
|
|
|
this.BaseRepository().Update(annex); |
|
|
|
} |
|
|
|
} |
|
|
|
else |
|
|
|
{ |
|
|
|
stuInfo.Photo = Guid.NewGuid().ToString(); |
|
|
|
|
|
|
|
var annexEntity = new AnnexesFileEntity() |
|
|
|
{ |
|
|
|
F_Id = Guid.NewGuid().ToString(), |
|
|
|
F_FileName = stuInfo.IdentityCardNo + ".jpg", |
|
|
|
F_FilePath = $"{url}/Resource/UserPhoto/{stuInfo.IdentityCardNo}.jpg", |
|
|
|
F_FolderId = stuInfo.Photo |
|
|
|
}; |
|
|
|
annexEntity.Create(); |
|
|
|
this.BaseRepository("CollegeMIS").Update(stuInfo); |
|
|
|
this.BaseRepository().Insert(annexEntity); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
catch (Exception ex) |
|
|
|