Merge pull request #1031 from KevinVdV/DS-2723-delete-collection-review-group

[DS-2723] Delete collection broken if a review group is attached in basic workflow
This commit is contained in:
Tim Donohue
2015-08-26 11:11:34 -05:00

View File

@@ -1018,6 +1018,9 @@ public class BasicWorkflowServiceImpl implements BasicWorkflowService
@Override
public void deleteCollection(Context context, Collection collection) throws SQLException, IOException, AuthorizeException {
collection.setWorkflowGroup(1, null);
collection.setWorkflowGroup(2, null);
collection.setWorkflowGroup(3, null);
workflowItemService.deleteByCollection(context, collection);
}