|
|
|
@ -372,7 +372,7 @@ namespace Shentun.Peis.RegisterChecks |
|
|
|
registerCheck.AuditorName = input.AuditorName; |
|
|
|
if (!string.IsNullOrWhiteSpace(input.LisSampleNo)) |
|
|
|
registerCheck.LisSampleNo = input.LisSampleNo; |
|
|
|
if (input.SubmissionTime!=null) |
|
|
|
if (input.SubmissionTime != null) |
|
|
|
registerCheck.SubmissionTime = input.SubmissionTime; |
|
|
|
if (input.AuditorTime != null) |
|
|
|
registerCheck.AuditorTime = input.AuditorTime; |
|
|
|
@ -711,12 +711,12 @@ namespace Shentun.Peis.RegisterChecks |
|
|
|
} |
|
|
|
if (!string.IsNullOrWhiteSpace(checkDoctorEnt.AuditorUserId)) |
|
|
|
{ |
|
|
|
if (registerCheckEnt.AuditTime == null) |
|
|
|
|
|
|
|
if (registerCheckEnt.AuditorTime == null) |
|
|
|
{ |
|
|
|
registerCheckEnt.AuditTime = DateTime.Now; |
|
|
|
registerCheckEnt.AuditorTime = DateTime.Now; |
|
|
|
} |
|
|
|
registerCheckEnt.IsAudit = 'Y'; |
|
|
|
registerCheckEnt.AuditorUserId = Guid.Parse(checkDoctorEnt.AuditorUserId); |
|
|
|
registerCheckEnt.AuditorName = checkDoctorEnt.AuditorUserId; |
|
|
|
isUpdate = true; |
|
|
|
} |
|
|
|
|
|
|
|
|