Compare commits

..

No commits in common. "59f376e720c8d2eabd5c44856c7e8daeb5f69561" and "8767911a16365d72ff3d0ea4203a5886c30ac5bf" have entirely different histories.

2 changed files with 4 additions and 1 deletions

View File

@ -181,7 +181,7 @@ public static class ExcelExportHelper
return new FileStreamResult(memoryStream, "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet") return new FileStreamResult(memoryStream, "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet")
{ {
FileDownloadName = $"{(string.IsNullOrEmpty(exportFileNamePrefix) ? "" : exportFileNamePrefix+ "_") }{Path.GetFileNameWithoutExtension(fileName) }_{DateTime.Now.ToString("yyyyMMddHHmmss")}.xlsx" FileDownloadName = $"{exportFileNamePrefix}_{fileName}_{DateTime.Now.ToString("yyyyMMddHHmmss")}.xlsx"
}; };
#endregion #endregion

View File

@ -430,6 +430,9 @@ namespace IRaCIS.Application.Services
// data.IsComplete = inDto.IsComplete; // data.IsComplete = inDto.IsComplete;
// data.IsSign = true; // data.IsSign = true;
// data.ReadingClinicalDataState = ReadingClinicalDataStatus.HaveSigned; // data.ReadingClinicalDataState = ReadingClinicalDataStatus.HaveSigned;
// var result = await _readingClinicalDataRepository.SaveChangesAsync(); // var result = await _readingClinicalDataRepository.SaveChangesAsync();