Merge pull request #304 from marcoAntonioNina/BUG-9454

BUG 9454 Problemas con el reassign el boton no esta funcionando SOLVED
This commit is contained in:
julceslauhub
2012-07-17 09:08:43 -07:00

View File

@@ -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();
}
}
});