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:
@@ -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
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user