Merged in dheeyi/processmaker/PM-1882 (pull request #1747)

PM-1882 0016934: Adicion de varias veces un departamento al presionar el boton save
This commit is contained in:
Julio Cesar Laura Avendaño
2015-03-23 20:21:49 -04:00

View File

@@ -327,6 +327,8 @@ SaveNewDepartment = function(){
return;
}
var dep_parent = newForm.getForm().findField('parent').getValue();
newForm.getForm().findField('dep_name').reset();
CloseWindow();
Ext.Ajax.request({
url: 'departments_Ajax',
params: {action: 'checkDepartmentName', name: dep_name, parent: dep_parent},
@@ -344,9 +346,8 @@ SaveNewDepartment = function(){
editButton.disable();
deleteButton.disable();
usersButton.disable();
newForm.getForm().findField('dep_name').reset();
CloseWindow();
PMExt.notify(_('ID_DEPARTMENTS'), _('ID_DEPARTMENT_SUCCESS_NEW'));
return;
},
failure: function(r,o){
waitLoading.hide();