ProcessMaker-BE "Trigger Wizard (fixes)"

- En el listado de trigger wizards no estaba ordenado, ahora se despliega ordenadamente
- Se corrigio el .feature correspondiente para que aplique el cambio
- Otros fixes tambien se realizaron
This commit is contained in:
Victor Saisa Lopez
2014-06-20 11:48:57 -04:00
parent e3b85eb09b
commit 82071586c2
6 changed files with 34 additions and 27 deletions

View File

@@ -105,6 +105,8 @@ class Bpmn extends Handler
// setting defaults
$data['PRJ_UID'] = array_key_exists('PRJ_UID', $data) ? $data['PRJ_UID'] : Common::generateUID();
unset($data["PRJ_UPDATE_DATE"]);
self::log("Create Project with data: ", $data);
$this->project = new Project();
$this->project->fromArray($data, BasePeer::TYPE_FIELDNAME);

View File

@@ -44,7 +44,7 @@ class Workflow extends Handler
$process = new Process();
$processData = $process->load($proUid);
} catch (\Exception $e) {
throw new Exception\ProjectNotFound($me, $proUid);
throw $e;
}
$me->process = $processData;