Uat_Study
he 2022-04-08 14:43:43 +08:00
parent 5c58a055ff
commit 6fe823ec7a
1 changed files with 0 additions and 4 deletions

View File

@ -80,7 +80,6 @@ namespace IRaCIS.Core.API.Controllers
[UnitOfWork]
public async Task<IResponseOutput> AddOrUpdateSV(DataInspectionDto<SubjectVisitCommand> opt)
{
var fun = await _subjectVisitService.AddOrUpdateSV(opt.OptCommand);
if (!fun.IsSuccess)
{
@ -88,9 +87,6 @@ namespace IRaCIS.Core.API.Controllers
}
opt.AuditInfo.SubjectVisitId = Guid.Parse(fun.Data);
opt.AuditInfo.SubjectVisitName = opt.OptCommand.VisitName;
return await _inspectionService.Enforcement(opt.OptCommand, opt.AuditInfo, opt.SignInfo, null, fun);
}