MT-10 fix exception
This commit is contained in:
@@ -1413,7 +1413,8 @@ importProcessExistGroup = function()
|
||||
}
|
||||
},
|
||||
failure: function(o, resp) {
|
||||
var msg = resp.result.msg ? resp.result.msg : resp.response.responseText;
|
||||
var msg = resp.result ? resp.result.msg : resp.response.responseText;
|
||||
importProcessGlobal.objectsToImport = "";
|
||||
w.close();
|
||||
Ext.MessageBox.show({
|
||||
title : _('ID_ERROR'),
|
||||
@@ -1613,7 +1614,8 @@ importProcessExistProcess = function()
|
||||
}
|
||||
},
|
||||
failure : function(o, resp) {
|
||||
var msg = resp.result.msg ? resp.result.msg : resp.response.responseText;
|
||||
var msg = resp.result ? resp.result.msg : resp.response.responseText;
|
||||
importProcessGlobal.objectsToImport = "";
|
||||
w.close();
|
||||
Ext.MessageBox.show({
|
||||
title : _('ID_ERROR'),
|
||||
|
||||
Reference in New Issue
Block a user