Closed mwojno-tsg closed 3 years ago
Issue resolved with OC commit: 26552. Addresses the issue when a document is deleted it will error when generating the workflow report b/c it can't find the document. I have placed a try/catch around the getAllVersions call that was producing the error. If a document is somehow deleted, it will fill in blank fields within the excel report for the document properties.
CR: gsteimer, dgrumieaux
Overview
The generate workflow report fails if a document is deleted because the
getAllVersions
throws an unhandled not found exception.The deleted document is not purged from the historical activiti database, therefore, when looking up properties of closed out TBR workflows it will fail.
Proposed Solution
getAllVersions
withinWFReportUtil
to just logger warn if document cannot be found.