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

@@ -259,7 +259,7 @@ abstract class BaseProcess extends BaseObject implements Persistent
* The value for the pro_action_done field.
* @var string
*/
protected $pro_action_done = '';
protected $pro_action_done;
/**
* Flag to prevent endless save loop, if this object is referenced
@@ -1599,7 +1599,7 @@ abstract class BaseProcess extends BaseObject implements Persistent
$v = (string) $v;
}
if ($this->pro_action_done !== $v || $v === '') {
if ($this->pro_action_done !== $v) {
$this->pro_action_done = $v;
$this->modifiedColumns[] = ProcessPeer::PRO_ACTION_DONE;
}