|
|
@ -78,8 +78,15 @@ namespace Shentun.WebPeis.PatientRegisters |
|
|
var requestPath = virtualPathsHelper.GetReportRequestPath(); |
|
|
var requestPath = virtualPathsHelper.GetReportRequestPath(); |
|
|
var physicsPath = virtualPathsHelper.GetReportPhysicsPath(); |
|
|
var physicsPath = virtualPathsHelper.GetReportPhysicsPath(); |
|
|
|
|
|
|
|
|
requestPath = $"{requestPath}\\{DateTime.Now.Year}\\{DateTime.Now.Month}\\{DateTime.Now.Day}\\"; |
|
|
|
|
|
physicsPath = $"{physicsPath}\\{DateTime.Now.Year}\\{DateTime.Now.Month}\\{DateTime.Now.Day}\\"; |
|
|
|
|
|
|
|
|
DateTime dateTime = DateTime.Now; |
|
|
|
|
|
if (patientRegister.SummaryDate != null) |
|
|
|
|
|
{ |
|
|
|
|
|
dateTime = patientRegister.SummaryDate.Value; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
requestPath = $"{requestPath}\\{dateTime.Year}\\{dateTime.Month}\\{dateTime.Day}\\"; |
|
|
|
|
|
physicsPath = $"{physicsPath}\\{dateTime.Year}\\{dateTime.Month}\\{dateTime.Day}\\"; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|