From 529a66489f74aa285ae9456dfa6f80c7f88e01f6 Mon Sep 17 00:00:00 2001 From: wxd <123@qq.com> Date: Mon, 13 Apr 2026 21:44:50 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AF=BC=E5=85=A5excel=E7=BB=93=E6=9E=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../ImportRegularResults/ImportRegularResultAppService.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/Shentun.Peis.Application/ImportRegularResults/ImportRegularResultAppService.cs b/src/Shentun.Peis.Application/ImportRegularResults/ImportRegularResultAppService.cs index 5423b13b..48be2fec 100644 --- a/src/Shentun.Peis.Application/ImportRegularResults/ImportRegularResultAppService.cs +++ b/src/Shentun.Peis.Application/ImportRegularResults/ImportRegularResultAppService.cs @@ -115,7 +115,8 @@ namespace Shentun.Peis.ImportRegularResults ItemId = itemId, ItemResult = item.ItemResult, RegisterCheckId = rgFirst.registerCheck.Id, - CheckDoctorName = item.CheckDoctorName + CheckDoctorName = item.CheckDoctorName, + CheckDate = string.IsNullOrWhiteSpace(item.CheckDate) ? null : Convert.ToDateTime(item.CheckDate) }; inputDtoList.Add(inputDto); } @@ -137,6 +138,7 @@ namespace Shentun.Peis.ImportRegularResults { RegisterCheckId = item.Key, CheckDoctorId = item.First().CheckDoctorName, + CheckDate = item.First().CheckDate, RegisterCheckItems = item.Select(o => new UpdateRegisterCheckItemDetail() { ItemId = o.ItemId,