Compare commits
No commits in common. "59f376e720c8d2eabd5c44856c7e8daeb5f69561" and "8767911a16365d72ff3d0ea4203a5886c30ac5bf" have entirely different histories.
59f376e720
...
8767911a16
|
|
@ -181,7 +181,7 @@ public static class ExcelExportHelper
|
|||
|
||||
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
|
||||
|
|
|
|||
|
|
@ -430,6 +430,9 @@ namespace IRaCIS.Application.Services
|
|||
// data.IsComplete = inDto.IsComplete;
|
||||
// data.IsSign = true;
|
||||
// data.ReadingClinicalDataState = ReadingClinicalDataStatus.HaveSigned;
|
||||
|
||||
|
||||
|
||||
// var result = await _readingClinicalDataRepository.SaveChangesAsync();
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue