change to luos in docker
This commit is contained in:
@@ -110,6 +110,7 @@ class PluginRegistry
|
||||
$this->_aPluginDetails[$Namespace]->setVersion($plugin->iVersion);
|
||||
return;
|
||||
}
|
||||
|
||||
$detail = new PluginDetail(
|
||||
$Namespace,
|
||||
$ClassName,
|
||||
|
||||
@@ -793,7 +793,7 @@ class BpmnWorkflow extends Project\Bpmn
|
||||
private function createTaskByElement($elementUid, $elementType, $key, $eventName = '')
|
||||
{
|
||||
try {
|
||||
$taskTitle = empty($eventName) ? $taskType : $eventName;
|
||||
$taskTitle = empty($eventName) ? $elementType : $eventName;
|
||||
|
||||
if (isset($this->arrayElementTaskRelation[$elementUid])) {
|
||||
$taskUid = $this->arrayElementTaskRelation[$elementUid];
|
||||
@@ -831,7 +831,7 @@ class BpmnWorkflow extends Project\Bpmn
|
||||
$prefix = $this->arrayTaskAttribute[$key]["prefix"];
|
||||
$taskUid = $this->wp->addTask([
|
||||
"TAS_UID" => $prefix . substr(Common::generateUID(), (32 - strlen($prefix)) * -1),
|
||||
"TAS_TYPE" => $taskType,
|
||||
"TAS_TYPE" => 'NORMAL',
|
||||
"TAS_TITLE" => $taskTitle,
|
||||
"TAS_POSX" => $taskPosX,
|
||||
"TAS_POSY" => $taskPosY
|
||||
|
||||
Reference in New Issue
Block a user