Compare commits

..

No commits in common. "28014139f549728e69742445d9a98cc40fd6639e" and "09bf2b4d9129ecb5ea376e65854df5ec958d4e54" have entirely different histories.

1 changed files with 0 additions and 7 deletions

View File

@ -601,12 +601,6 @@ public class AuditDocumentService(IRepository<AuditDocument> _auditDocumentRepos
throw new BusinessValidationFailedException(_localizer["AuditDocument_CanNotMove"]); throw new BusinessValidationFailedException(_localizer["AuditDocument_CanNotMove"]);
} }
await CopyFileOrFolder(inDto);
await DeleteAuditDocument(new DeleteAuditDocumentInDto()
{
Ids = inDto.Ids
});
return ResponseOutput.Ok(); return ResponseOutput.Ok();
} }
@ -683,7 +677,6 @@ public class AuditDocumentService(IRepository<AuditDocument> _auditDocumentRepos
auditDocumentAddOrEdits.ForEach(x => auditDocumentAddOrEdits.ForEach(x =>
{ {
x.IsUpdate = false; x.IsUpdate = false;
x.IsAuthorization = false;
x.Id = null; x.Id = null;
x.ParentId = inDto.ParentId; x.ParentId = inDto.ParentId;
}); });