Merged in release/3.2.4 (pull request #6557)

HOR:4741: Update with 3.2.4

Approved-by: Paula Quispe <paula.quispe@processmaker.com>
Approved-by: Julio Cesar Laura Avendaño <contact@julio-laura.com>
This commit is contained in:
Paula Quispe
2018-07-17 19:37:21 +00:00
committed by Julio Cesar Laura Avendaño
3 changed files with 5 additions and 3 deletions

View File

@@ -931,7 +931,7 @@ class WsBase
$cc,
$bcc,
'',
'',
$attachment,
'pending',
($showMessage) ? 1 : 0,
$msgError,

View File

@@ -125,7 +125,6 @@ class FixReferencePath
$pmTable->prepare();
$pmTable->preparePropelIniFile();
$pmTable->buildSchema();
$pmTable->phingbuildModel();
$this->outVerboseln("* Regenerate classes for table: " . $row["ADD_TAB_NAME"]);
} catch (Exception $e) {
CLI::logging(CLI::error("Error:" . "Error in regenerate classes for table: " . $row["ADD_TAB_NAME"] . ". " . $e));

View File

@@ -245,6 +245,9 @@ Ext.onReady(function () {
buttonText: _('ID_SELECT_FILE'),
name: 'img',
validator: function (filePath) {
if (uploadWin.isVisible() === false) {
return true;
}
var flag, btn;
btn = Ext.getCmp('btnUpload');
btn.disable();
@@ -295,9 +298,9 @@ Ext.onReady(function () {
PMExt.notify(_('ID_SUCCESS'), messageError);
}
uploadWin.hide();
panelRightTop.getForm().reset();
store.load();
uploadWin.hide();
}
});
}