diff --git a/workflow/engine/templates/cases/casesList.js b/workflow/engine/templates/cases/casesList.js index 9127ee0b6..98b3caf8d 100644 --- a/workflow/engine/templates/cases/casesList.js +++ b/workflow/engine/templates/cases/casesList.js @@ -1599,13 +1599,14 @@ Ext.onReady ( function() { text: _('ID_REASSIGN'), handler: function(){ var rs = storeReassignCases.getModifiedRecords(); - if (rs.length < storeReassignCases.totalLength) { Ext.Msg.confirm( _('ID_CONFIRM'), _('ID_CONFIRM_TO_REASSIGN'), function (btn, text) { if ( btn == 'yes' ) { ExecReassign(); } }) + } else { + ExecReassign(); } } });