BUG 9898 PDF limit 6 pages SOLVED
- When we generate a pdf in process, it can be created and download, but it can't over 6 pages. - Was added new report generator pdf.
This commit is contained in:
@@ -37,7 +37,7 @@ try {
|
||||
break;
|
||||
}
|
||||
|
||||
//default:
|
||||
//default:
|
||||
|
||||
|
||||
require_once 'classes/model/OutputDocument.php';
|
||||
@@ -46,9 +46,9 @@ try {
|
||||
$oOutputDocument = new OutputDocument();
|
||||
|
||||
if (isset( $_POST['form'] ))
|
||||
$aData = $_POST['form']; //For old process map form
|
||||
$aData = $_POST['form']; //For old process map form
|
||||
else
|
||||
$aData = $_POST; //For Extjs (Since we are not using form in ExtJS)
|
||||
$aData = $_POST; //For Extjs (Since we are not using form in ExtJS)
|
||||
|
||||
|
||||
if (isset( $aData['OUT_DOC_TITLE'] ) && $aData['OUT_DOC_TITLE'] != '') {
|
||||
@@ -80,12 +80,12 @@ try {
|
||||
}
|
||||
|
||||
if (isset( $aData['PRO_UID'] )) {
|
||||
//refresh dbarray with the last change in outputDocument
|
||||
//refresh dbarray with the last change in outputDocument
|
||||
$oMap = new processMap();
|
||||
$oCriteria = $oMap->getOutputDocumentsCriteria( $aData['PRO_UID'] );
|
||||
}
|
||||
|
||||
} catch (Exception $oException) {
|
||||
die( $oException->getMessage() );
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user