笔试结果更新功能开发

This commit is contained in:
dxfeng 2024-01-30 10:50:39 +08:00
parent 0d9b48c6e4
commit fd99d11f2f
1 changed files with 6 additions and 4 deletions

View File

@ -115,10 +115,12 @@ public class WrittenResultsServiceImpl extends Service implements WrittenResults
descriptionList.add("[笔试结果]为空");
success = false;
}
resultCellValue = convertResultValue(resultCellValue);
if (StringUtils.isBlank(resultCellValue)) {
descriptionList.add("[笔试结果]转换失败");
success = false;
if (StringUtils.isNotBlank(resultCellValue)) {
resultCellValue = convertResultValue(resultCellValue);
if (StringUtils.isBlank(resultCellValue)) {
descriptionList.add("[笔试结果]转换失败");
success = false;
}
}
// 更新笔试成绩