HOR-4527
This commit is contained in:
committed by
Julio Cesar Laura Avendaño
parent
abe71a6ffe
commit
0d533e19d9
@@ -55,22 +55,22 @@ $html = "
|
||||
</tr>
|
||||
</table>";
|
||||
|
||||
$ch = &$tree->addChild("", $html, array('nodeType' => 'child'));
|
||||
$ch = $tree->addChild("", $html, array('nodeType' => 'child'));
|
||||
$ch->point = '</span><img src="/images/plus.gif" />';
|
||||
$i=1;
|
||||
$PRO_UID='';
|
||||
$DYN_UID='';
|
||||
foreach ($steps as $step) {
|
||||
require_once 'classes/model/Dynaform.php';
|
||||
$od = new Dynaform();
|
||||
$dynaformF = $od->Load($step['STEP_UID_OBJ']);
|
||||
require_once 'classes/model/Dynaform.php';
|
||||
$od = new Dynaform();
|
||||
$dynaformF = $od->Load($step['STEP_UID_OBJ']);
|
||||
|
||||
$n = $step['STEP_POSITION'];
|
||||
$TITLE = " - ".$dynaformF['DYN_TITLE'];
|
||||
$DYN_UID = $dynaformF['DYN_UID'];
|
||||
$PRO_UID = $step['PRO_UID'];
|
||||
$n = $step['STEP_POSITION'];
|
||||
$TITLE = " - ".$dynaformF['DYN_TITLE'];
|
||||
$DYN_UID = $dynaformF['DYN_UID'];
|
||||
$PRO_UID = $step['PRO_UID'];
|
||||
|
||||
$html = "
|
||||
$html = "
|
||||
<table cellspacing='0' cellpadding='0' border='1' style='border:0px;'>
|
||||
<tr>
|
||||
<td class='treeNode' style='border:0px;background-color:transparent;'><span id='focus$i'></td>
|
||||
@@ -81,9 +81,9 @@ foreach ($steps as $step) {
|
||||
</tr>
|
||||
</table>";
|
||||
|
||||
$ch = &$tree->addChild("", $html, array('nodeType' => 'child'));
|
||||
$ch->point = '<img src="/images/ftv2mnode.gif" />';
|
||||
$i++;
|
||||
$ch = $tree->addChild("", $html, array('nodeType' => 'child'));
|
||||
$ch->point = '<img src="/images/ftv2mnode.gif" />';
|
||||
$i++;
|
||||
}
|
||||
|
||||
$html = "
|
||||
@@ -95,23 +95,23 @@ $html = "
|
||||
</td>
|
||||
</tr>
|
||||
</table>";
|
||||
$ch = &$tree->addChild("", $html, array('nodeType' => 'child'));
|
||||
$ch = $tree->addChild("", $html, array('nodeType' => 'child'));
|
||||
$ch->point = '</span><img src="/images/plus.gif" />';
|
||||
|
||||
$steps = $o->getAllInputsStepsToRevise($_GET['APP_UID']);
|
||||
//$i=1;
|
||||
|
||||
foreach ($steps as $step) {
|
||||
require_once 'classes/model/InputDocument.php';
|
||||
$od = new InputDocument();
|
||||
$IDF = $od->Load($step['STEP_UID_OBJ']);
|
||||
require_once 'classes/model/InputDocument.php';
|
||||
$od = new InputDocument();
|
||||
$IDF = $od->Load($step['STEP_UID_OBJ']);
|
||||
|
||||
$n = $step['STEP_POSITION'];
|
||||
$TITLE = " - ".$IDF['INP_DOC_TITLE'];
|
||||
$INP_DOC_UID = $IDF['INP_DOC_UID'];
|
||||
$PRO_UID = $step['PRO_UID'];
|
||||
$n = $step['STEP_POSITION'];
|
||||
$TITLE = " - ".$IDF['INP_DOC_TITLE'];
|
||||
$INP_DOC_UID = $IDF['INP_DOC_UID'];
|
||||
$PRO_UID = $step['PRO_UID'];
|
||||
|
||||
$html = "
|
||||
$html = "
|
||||
<table cellspacing='0' cellpadding='0' border='1' style='border:0px;'>
|
||||
<tr>
|
||||
<td class='treeNode' style='border:0px;background-color:transparent;'><span id='focus$i'></td>
|
||||
@@ -122,9 +122,9 @@ foreach ($steps as $step) {
|
||||
</tr>
|
||||
</table>";
|
||||
|
||||
$ch = &$tree->addChild("", $html, array('nodeType' => 'child'));
|
||||
$ch->point = '<img src="/images/ftv2mnode.gif" />';
|
||||
$i++;
|
||||
$ch = $tree->addChild("", $html, array('nodeType' => 'child'));
|
||||
$ch->point = '<img src="/images/ftv2mnode.gif" />';
|
||||
$i++;
|
||||
}
|
||||
|
||||
$i++;
|
||||
@@ -138,8 +138,8 @@ $html = "
|
||||
</tr>
|
||||
</table>";
|
||||
|
||||
$ch = &$tree->addChild("", $html, array('nodeType' => 'child'));
|
||||
$ch = $tree->addChild("", $html, array('nodeType' => 'child'));
|
||||
$ch->point = '</span><img src="/images/ftv2doc.gif" />';
|
||||
|
||||
print ($tree->render());
|
||||
print($tree->render());
|
||||
//
|
||||
|
||||
Reference in New Issue
Block a user