add final status

This commit is contained in:
Jonathan Jenne
2024-01-15 13:54:52 +01:00
parent 6460c2b4ea
commit a4ed41419d
3 changed files with 15 additions and 2 deletions

View File

@@ -124,4 +124,12 @@ Public Class ActionService
Return EmailService.SendDocumentCompletedEmailToCreator(pEnvelope, pAttachment)
End Function
Public Function CreateReport(pEnvelope As Envelope) As Boolean
If HistoryService.SetEnvelopeStatus(pEnvelope, Constants.EnvelopeStatus.EnvelopeReportCreated, "System") = False Then
Return False
End If
Return True
End Function
End Class