Browse Source

Puts amount with 2 decimals into snipped PDFs

currency
7u83 4 years ago
parent
commit
24aefba7e3
1 changed files with 5 additions and 1 deletions
  1. +5
    -1
      submit.php

+ 5
- 1
submit.php View File

@ -236,12 +236,16 @@ function mkSnippedPdf($key){
$amount = $_POST['amount'][$key];
$desc = $_POST['description'][$key];
$am = floatval(str_replace(",",".",$amount));
$am = str_replace(".",",",sprintf("%.2f",$am));
$html =
<<<EOD
<h1>Position $pos</h1>
<p>$desc</p><br>
<p>$amount EUR</p><br>
<p>$am EUR</p><br>
EOD;
// Print text using writeHTMLCell()

Loading…
Cancel
Save