Merged in qronald/processmaker/HOR-1500-R (pull request #4723)

fix in route screen
This commit is contained in:
Julio Cesar Laura Avendaño
2016-08-11 15:42:54 -04:00
3 changed files with 93 additions and 2 deletions

View File

@@ -8,7 +8,8 @@ class RoutingScreen extends \Derivation
public function __construct()
{
parent::__construct();
$this->setRegexpTaskTypeToInclude("GATEWAYTOGATEWAY|END-MESSAGE-EVENT|END-EMAIL-EVENT|SCRIPT-TASK|INTERMEDIATE-CATCH-TIMER-EVENT|INTERMEDIATE-THROW-EMAIL-EVENT");
$this->setRegexpTaskTypeToInclude("GATEWAYTOGATEWAY|END-MESSAGE-EVENT|END-EMAIL-EVENT|INTERMEDIATE-CATCH-TIMER-EVENT|INTERMEDIATE-THROW-EMAIL-EVENT");
$this->flagSanity = true;
}
public function mergeDataDerivation($post, $prepareInformation)
@@ -37,4 +38,9 @@ class RoutingScreen extends \Derivation
return $aDataMerged;
}
public function prepareRoutingScreen($arrayData)
{
return $this->postSanity($this->prepareInformation($arrayData));
}
}