Merge branch 'master' of bitbucket.org:colosa/processmaker

This commit is contained in:
Freddy Daniel Rojas Valda
2014-01-31 14:14:57 -04:00
4 changed files with 4 additions and 2 deletions

View File

@@ -21,7 +21,7 @@ easily. It's relatively lightweight and doesn't require any kind of installation
on the client computer. This file describes the requirements and installation
steps for the server.
Licence
License
-------
ProcessMaker - Automate your Workflow

View File

@@ -107,6 +107,7 @@ class Event
throw (new \Exception('The field "evn_tas_uid_from" is required!'));
}
$this->validateTask($dataEvent['EVN_TAS_UID_FROM']);
$dataEvent['TAS_UID'] = $dataEvent['EVN_TAS_UID_FROM'];
if (empty($dataEvent['EVN_TAS_UID_TO'])) {
throw (new \Exception('The field "evn_tas_uid_to" is required!'));

View File

@@ -66,7 +66,7 @@ class Event extends Api
'evn_posx', 'evn_posy', 'evn_type', 'tas_evn_uid', 'evn_max_attempts'
);
$event = new \BusinessModel\Event();
$response = $event->getEvents($projectUid, '', $EventUid);
$response = $event->getEvents($projectUid, '', $eventUid);
foreach ($response as $key => $eventData) {
if (in_array($key, $hiddenFields)) {
unset($response[$key]);

View File

@@ -32,6 +32,7 @@ debug = 1
web-entry = "Services\Api\ProcessMaker\Project\WebEntry"
data-base-connections = "Services\Api\ProcessMaker\Project\DataBaseConnection"
files-manager = "Services\Api\ProcessMaker\Project\FilesManager"
report-Table = "Services\Api\ProcessMaker\Project\ReportTable"
[alias: projects]
project = "Services\Api\ProcessMaker\Project"