Kostenerstattungsantrag über $sum EUR
Projekt: $_POST[project]
WMDE Ansprechpartner: $_POST[wmdecontact]
Name: $_POST[realname]
E-Mail: $_POST[email]
Telefon: $_POST[phone]
Auszahlungsweg: $aw
$aw_details
EOD;
// Print text using writeHTMLCell()
$pdf->writeHTMLCell(0, 0, '', '', $html, 0, 1, 0, true, '', true);
// ---------------------------------------------------------
$tn = tempnam("/tmp","kaform");
// Close and output PDF document
// This method has several options, check the source code
// documentation for more information.
$pdf->Output($tn, 'F');
return $tn;
}
function mkSnippedPdf($key){
$pageLayout = array(210,70);
// create new PDF document
# $pdf = new kaformPDF(
# PDF_PAGE_ORIENTATION, PDF_UNIT, PDF_PAGE_FORMAT,
# true, 'UTF-8', false);
$pdf = new kaformPDF(
PDF_PAGE_ORIENTATION, PDF_UNIT, $pageLayout /*PDF_PAGE_FORMAT*/,
true, 'UTF-8', false);
$pdf->AddPage('L');
$pos = array_search($key,array_keys($_POST['desc']))+1;
echo "
Make Snipped for $key -> $pos
";
# $mydesk = $_POST[desc][$key];
#
$amount = $_POST['amount'][$key];
$desc = $_POST['desc'][$key];
$html =
<<Posi. $pos
$desc
$amount EUR
EOD;
// Print text using writeHTMLCell()
$pdf->writeHTMLCell(0, 0, '', '', $html, 0, 1, 0, true, '', true);
$tn = tempnam("/tmp","kaform");
// Close and output PDF document
// This method has several options, check the source code
// documentation for more information.
$pdf->Output("$tn", 'F');
return $tn;
}
//var_dump($_POST);
function convert($row) {
$r = array();
foreach ($_SESSION['files'] as $filename => $file){
if ($file['row'] != $row)
continue;
$tn = tempnam("/tmp","kaform");
file_put_contents("$tn",$file['content']);
array_push($r,"$tn");
}
return $r;
}
function calcSum(){
$sum =0;
if (!isset($_POST['amount'])) {
echo "wrong parameters";
die;
}
foreach ($_POST['amount'] as $val){
var_dump($val);
$sum += floatval(str_replace(",",".",$val));
}
return $sum;
}
$pdfs = array();
// Applicatoin starts here
echo "Making Fromt PDF
";
$p = mkFrontPDF();
echo "Did Making Fromt PDF
";
array_push($pdfs,$p);
foreach ($_POST['desc'] as $key => $val) {
echo "DREESK KEY VAL $key --> $val
";
$p = mkSnippedPDF($key);
array_push($pdfs,$p);
$pr = convert($key);
$pdfs = array_merge($pdfs,$pr);
}
var_dump($pdfs);
$cmd = "$CONVERT_CMD";
foreach ($pdfs as $filename){
$cmd .= " $filename";
}
$cmd .= " cat output /tmp/result.pdf";
exec ($cmd);
echo "CMD: $cmd
";