59 lines
1.9 KiB
PHP
59 lines
1.9 KiB
PHP
|
|
<?php
|
||
|
|
ini_set('display_errors',1);
|
||
|
|
if (! $_REQUEST ['record'] || $_REQUEST ['record'] == '')
|
||
|
|
die ( 'Brak rekordu' );
|
||
|
|
else
|
||
|
|
$record = $_REQUEST ['record'];
|
||
|
|
|
||
|
|
include_once ("modules/EcmStockDocIns/PDFTemplate/helper.php");
|
||
|
|
|
||
|
|
$focus = new EcmStockDocIn ();
|
||
|
|
$focus->retrieve ( $record );
|
||
|
|
|
||
|
|
$user = new User ();
|
||
|
|
$user->retrieve ( $focus->assigned_user_id );
|
||
|
|
$labels = return_module_language($focus->ecmlanguage, 'EcmStockDocIns');
|
||
|
|
include_once ("include/MPDF57/mpdf.php");
|
||
|
|
$p=new mPDF('','A4', null, 'helvetica', 10,10,30,45,5,5);
|
||
|
|
$mpdf->mirrorMargins = 1;
|
||
|
|
|
||
|
|
$db = $GLOBALS ['db'];
|
||
|
|
$r=$db->query ("select name,footer_address,footer_nip from ecmdocumenttemplates where id='75997203-f430-7f64-10e0-4b0a912673fa'");
|
||
|
|
$comp=$db->fetchByAssoc($r);
|
||
|
|
$addr = explode(",", $comp['footer_address']);
|
||
|
|
// document pdf
|
||
|
|
// document already exist?
|
||
|
|
$res = $db->query ( "SELECT footer, content FROM ecmstockdocin_pdf WHERE id='$record'" );
|
||
|
|
/*
|
||
|
|
if ($res->num_rows == 0) {
|
||
|
|
*/
|
||
|
|
// create and save document
|
||
|
|
$positions = formatPDFPositions ( $focus->getPositionList ( true ), $focus );
|
||
|
|
// get header
|
||
|
|
$header = '';
|
||
|
|
include_once ("modules/EcmStockDocIns/PDFTemplate/header.php");
|
||
|
|
$content = '';
|
||
|
|
include_once ("modules/EcmStockDocIns/PDFTemplate/content.php");
|
||
|
|
|
||
|
|
global $current_user;
|
||
|
|
//$db->query ( "INSERT INTO ecmstockdocin_pdf VALUES ('$record','$current_user->id', NOW(),'" . mysql_real_escape_string ( $header ) . "', '" . mysql_real_escape_string ( $content ) . "')" );
|
||
|
|
/*
|
||
|
|
} else {
|
||
|
|
$positions = formatPDFPositions ( $focus->getPositionList ( true ), $focus );
|
||
|
|
$row = $db->fetchByAssoc ( $res );
|
||
|
|
$header = htmlspecialchars_decode ( $row ['footer'] ); // punk rock!
|
||
|
|
$content = htmlspecialchars_decode ( $row ['content'] );
|
||
|
|
$header = '';
|
||
|
|
include_once ("modules/EcmStockDocIns/PDFTemplate/header.php");
|
||
|
|
$content = '';
|
||
|
|
include_once ("modules/EcmStockDocIns/PDFTemplate/content.php");
|
||
|
|
|
||
|
|
}*/
|
||
|
|
|
||
|
|
$p->SetHTMLHeader ($header);
|
||
|
|
$p->WriteHTML ( $content );
|
||
|
|
|
||
|
|
// draw PDF
|
||
|
|
$p->Output ();
|
||
|
|
|