BUG 7108 Add the tabs in the summary to download and build documents

This commit is contained in:
Marco Antonio Nina
2012-02-23 12:34:33 -04:00
parent 54cee71502
commit f8fd7f1cf7
5 changed files with 116 additions and 17 deletions

View File

@@ -2,7 +2,7 @@
/**
* App controller
* @author Erik Amaru Ortiz <erik@colosa.com, aortiz.erik@gmail.com>
* @inherits Controller
* @herits Controller
* @access public
*/
@@ -129,8 +129,13 @@ class AppProxy extends HttpProxyController
$this->dynUid = $processData['PRO_DYNAFORMS']['PROCESS'];
}
$_SESSION['_applicationFields'] = $applicationFields;
$_SESSION['_processData'] = $processData;
$_SESSION['_applicationFields'] = $applicationFields;
$_SESSION['_processData'] = $processData;
$_SESSION['APPLICATION'] = $httpData->appUid;
$_SESSION['INDEX'] = $httpData->delIndex;
$_SESSION['PROCESS'] = $applicationFields['PRO_UID'];
$_SESSION['TASK'] = $applicationFields['TAS_UID'];
$_SESSION['STEP_POSITION'] = '';
}
/**
@@ -192,5 +197,4 @@ class AppProxy extends HttpProxyController
return $data;
}
}