Add php files

This commit is contained in:
2025-05-12 15:44:39 +00:00
parent c951760058
commit 82d5804ac4
9534 changed files with 2638137 additions and 0 deletions

View File

@@ -0,0 +1,74 @@
<?php
//add mz 2014-12-30
//check session variable
$type = isset($_REQUEST['file'])?'FILE':'BROSWER';
if ($_REQUEST['action']=='createPDF')
createEcmNoteOutPdf($_REQUEST['record'], $type);
function createEcmNoteOutPdf($record, $outputtype) {
include_once ("modules/EcmNoteOuts/PDFTemplate/helper.php");
$focus = new EcmNoteOut ();
$focus->retrieve ( $record );
$user = new User ();
$user->retrieve ( $focus->assigned_user_id );
$labels = return_module_language($focus->ecmlanguage, 'EcmNoteOuts');
include_once ("include/MPDF57/mpdf.php");
$p = new mPDF ( '', 'A4', null, 'helvetica', 10, 10, 30, 45, 5, 5 );
$mpdf->mirrorMargins = 1;
$db = $GLOBALS ['db'];
// document pdf
// document already exist?
$res = $db->query ( "SELECT footer, content FROM ecmnoteout_pdf WHERE id='$record'" );
if ($res->num_rows == 0) {
// create and save document
$positions = formatPDFPositions ( $focus->getPositionList ( true ), $focus );
// get header
$header = '';
include ("modules/EcmNoteOuts/PDFTemplate/header.php");
$content = '';
include("modules/EcmNoteOuts/PDFTemplate/content.php");
global $current_user,$app_list_strings;
$db->query ( "INSERT INTO ecmnoteout_pdf VALUES ('$record','$current_user->id', NOW(),'" . urlencode ( $header ) . "', '" . urlencode( $content ) . "','')" );
} else {
$row = $db->fetchByAssoc ( $res );
$header = urldecode ( $row ['footer'] ); // punk rock!
$content = urldecode ( $row ['content'] );
}
//var_dump($positions);
$p->SetHTMLHeader ( $header );
$footer='<hr><table style="font-size: 8pt; width: 100%;vertical-align:top;">
<tr><td width="25%">Saas SystemS Sp. z o.o.<br />
ul. Lipnowska 21-23<br />
87-100 Toruń<br />
NIP: 9562307719</td><td width="25%"></td><td width="20%">Bank: <br>Numer konta:</td><td>PKO BP<br> 53 1020 5011 0000 9002 0270 6323</td></tr></table>';
$p->SetHTMLFooter($footer);
$p->WriteHTML ( $content );
//echo $content;
// draw PDF
switch ($outputtype) {
case "BROSWER" :
$p->Output ();
return true;
case "FILE" :
$path = 'upload/fk_' . str_replace('/','',(str_replace(' ', '', $focus->document_no))) . '.pdf';
break;
case "EMAIL" :
include_once 'include/ECM/EcmSendMail/EcmSendMail.inc';
$path = EcmSendMail::TEMP_DIR . 'ZS_' . $focus->number . '.pdf';
break;
case "MULTIPDF" :
include_once 'include/ECM/EcmMultiPdf/EcmMultiPdf.inc';
$path = EcmMultiPdf::TEMP_DIR . 'EcmSales_' . $focus->id. '_' . create_guid() . '.pdf';
break;
};
$p->Output ($path, "F" );
return $path;
}