semicolon as CSV field seperator; use German number format
This commit is contained in:
parent
89d168f6b8
commit
4b32e787fe
@ -230,9 +230,12 @@ foreach ($use as $d => $day) { // calculate for each day
|
||||
$r_flat = $eur * $c_flat;
|
||||
$r_day[$d] = $r_day[$d] + $r_flat;
|
||||
|
||||
// total reimbursement for the single day
|
||||
// add on top of total reimbursement
|
||||
$r_total = $r_total + $r_day[$d];
|
||||
|
||||
// change number format of this day's amount to German (comma)
|
||||
$r_day[$d] = number_format($r_day[$d], 2, ',', '');
|
||||
|
||||
// Remarks, explanation what has been self-paid
|
||||
$remarks[$d] = "";
|
||||
if ($break[$d] === "yes") {
|
||||
@ -273,7 +276,7 @@ foreach ($use as $d => $day) { // calculate for each day
|
||||
|
||||
// Write and attach temporary CSV file
|
||||
foreach ($csv as $fields) {
|
||||
fputcsv($csvfile, $fields, ',', '"', '"');
|
||||
fputcsv($csvfile, $fields, ';', '"', '"');
|
||||
}
|
||||
$email->addAttachment($csvfile_path, filter_filename("perdiem" ."-". $who ."-". $er ."-". $catch . ".csv"));
|
||||
|
||||
@ -286,6 +289,9 @@ sent via <https://fsfe.org/internal/pd>.
|
||||
|
||||
Please find the expenses attached.";
|
||||
|
||||
// change number format of total amount to German (comma)
|
||||
$r_total = number_format($r_total, 2, ',', '');
|
||||
|
||||
// Finalise output table
|
||||
$html .= "<tr><td><strong>Total:</strong></td><td><strong>$r_total $cur</strong></td>";
|
||||
$html .= "<td colspan='5'></td></tr>";
|
||||
|
Loading…
Reference in New Issue
Block a user