HOR-1456 "SelfService Value Based assignment change to cyclical..." SOLVED

Issue:
    SelfService Value Based assignment change to cyclical only for the first export of a process
Cause:
    Datos corruptos
Solution:
    - Los datos corruptos son resueltos por el commit: d0c1117f2750881560e38ee2f23b4648b391f155 (card HOR-1319)
    - Se agrega validacion para los Script-Tasks
    - Se implementa el file "processImporter.log", donde se registran los "errores" en la importacion de procesos
This commit is contained in:
Victor Saisa Lopez
2016-08-01 12:17:04 -04:00
parent e88e2264e8
commit 9a8789590a
5 changed files with 29 additions and 6 deletions

View File

@@ -4126,7 +4126,11 @@ class Processes
foreach ($arrayData as $value) {
$record = $value;
$result = $scriptTask->create($processUid, $record);
try {
$result = $scriptTask->create($processUid, $record);
} catch (Exception $e) {
Bootstrap::registerMonolog('DataError', 400, $e->getMessage(), $record, SYS_SYS, 'processImporter.log');
}
}
} catch (Exception $e) {
throw $e;
@@ -6114,4 +6118,3 @@ class ObjectCellection
}
}
}