Skip to content

Commit

Permalink
Fix closed case outcome value
Browse files Browse the repository at this point in the history
  • Loading branch information
bpowers1215 committed Feb 5, 2019
1 parent 139f7e8 commit a29e587
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -329,7 +329,7 @@ private void closeCaseWorkItemPerformed(AjaxRequestTarget target) {
CaseManagementService cms = getCaseManagementService();
AbstractWorkItemOutputType output = new AbstractWorkItemOutputType()
.comment(dto.getComment())
.outcome("SUCCESS");
.outcome(OperationResultStatusType.SUCCESS.value());
FileUploadField evidenceUploadField = (FileUploadField) get(ID_MAIN_FORM).get(ID_CASE_WORK_ITEM_FORM).get(ID_CASE_WORK_ITEM_FORM_EVIDENCE);
if (evidenceUploadField != null) {
FileUpload evidence = evidenceUploadField.getFileUpload();
Expand Down

0 comments on commit a29e587

Please sign in to comment.