Browse Source

上传数据

master
wxd 1 year ago
parent
commit
408e81d6d6
  1. 10
      src/Shentun.Peis.Application/TransToWebPeis/TransToWebPeisAppService.cs

10
src/Shentun.Peis.Application/TransToWebPeis/TransToWebPeisAppService.cs

@ -160,7 +160,7 @@ namespace Shentun.Peis.TransToWebPeis
}
/// <summary>
/// 根据人员登记ID上传人员体检信息
/// 根据人员登记ID上传人员体检信息 上传备单
/// </summary>
/// <param name="input"></param>
/// <returns></returns>
@ -219,7 +219,7 @@ namespace Shentun.Peis.TransToWebPeis
}
/// <summary>
/// 导入数据 任务计划用
/// 导入数据 任务计划用 上传报告
/// </summary>
/// <param name="input"></param>
/// <returns></returns>
@ -296,6 +296,7 @@ namespace Shentun.Peis.TransToWebPeis
#endregion
//获取到报告地址
if (!string.IsNullOrWhiteSpace(reportBase64))
{
await UploadPeisReportAsync(new UploadPeisReportIuputDto
@ -1312,8 +1313,9 @@ namespace Shentun.Peis.TransToWebPeis
}
#endregion
patientRegisterEnt.IsUploadAppoint = 'Y';
if (patientRegisterEnt.CompleteFlag != PatientRegisterCompleteFlag.SumCheck)
patientRegisterEnt.IsUploadAppoint = 'Y';
await _patientRegisterRepository.UpdateAsync(patientRegisterEnt);
}
else

Loading…
Cancel
Save