BUG-16676 Default flow no tiene funcionalidad
This commit is contained in:
@@ -81,7 +81,7 @@ class ListParticipatedLastMapBuilder
|
||||
|
||||
$tMap->addColumn('APP_TAS_TITLE', 'AppTasTitle', 'string', CreoleTypes::VARCHAR, true, 255);
|
||||
|
||||
$tMap->addColumn('APP_STATUS', 'AppStatus', 'string', CreoleTypes::VARCHAR, true, 20);
|
||||
$tMap->addColumn('APP_STATUS', 'AppStatus', 'string', CreoleTypes::VARCHAR, false, 20);
|
||||
|
||||
$tMap->addColumn('DEL_INDEX', 'DelIndex', 'int', CreoleTypes::INTEGER, true, null);
|
||||
|
||||
|
||||
@@ -141,7 +141,7 @@ abstract class BaseBpmnFlow extends BaseObject implements Persistent
|
||||
*/
|
||||
protected $flo_position = 0;
|
||||
|
||||
/**
|
||||
/**
|
||||
* @var BpmnProject
|
||||
*/
|
||||
protected $aBpmnProject;
|
||||
@@ -365,7 +365,7 @@ abstract class BaseBpmnFlow extends BaseObject implements Persistent
|
||||
|
||||
/**
|
||||
* Get the [flo_position] column value.
|
||||
*
|
||||
*
|
||||
* @return int
|
||||
*/
|
||||
public function getFloPosition()
|
||||
@@ -374,7 +374,7 @@ abstract class BaseBpmnFlow extends BaseObject implements Persistent
|
||||
return $this->flo_position;
|
||||
}
|
||||
|
||||
/*
|
||||
/**
|
||||
* Set the value of [flo_uid] column.
|
||||
*
|
||||
* @param string $v new value
|
||||
@@ -780,7 +780,7 @@ abstract class BaseBpmnFlow extends BaseObject implements Persistent
|
||||
|
||||
/**
|
||||
* Set the value of [flo_position] column.
|
||||
*
|
||||
*
|
||||
* @param int $v new value
|
||||
* @return void
|
||||
*/
|
||||
@@ -794,9 +794,9 @@ abstract class BaseBpmnFlow extends BaseObject implements Persistent
|
||||
}
|
||||
|
||||
if ($this->flo_position !== $v || $v === 0) {
|
||||
$this->flo_position = $v;
|
||||
$this->modifiedColumns[] = BpmnFlowPeer::FLO_POSITION;
|
||||
}
|
||||
$this->flo_position = $v;
|
||||
$this->modifiedColumns[] = BpmnFlowPeer::FLO_POSITION;
|
||||
}
|
||||
|
||||
} // setFloPosition()
|
||||
|
||||
|
||||
Reference in New Issue
Block a user