Merge branch 'fronkdev' into 'master'

Changed Einzug to Bankeinzug in Address/Invoice

See merge request fronk/thetool!861
This commit is contained in:
Frank Schubert
2025-01-07 19:41:42 +00:00

View File

@@ -67,7 +67,7 @@
<td><?=date("d.m.Y", $invoice->invoice_date)?></td>
<td class="<?=($invoice->total < 0) ? "text-danger" : ""?>">€ <?=number_format($invoice->total, 2, ",", ".")?></td>
<td class="<?=($invoice->total_gross < 0) ? "text-danger" : ""?>">€ <?=number_format($invoice->total_gross, 2, ",", ".")?></td>
<td><?=($invoice->billing_type == "sepa") ? "Einzug" : "Einzahlung" ?></td>
<td><?=($invoice->billing_type == "sepa") ? "Bankeinzug" : "Einzahlung" ?></td>
<td><?=($invoice->billing_delivery == "email") ? "Email (".$invoice->email.")" : "Postversand" ?></td>
<td><a href="<?=self::getUrl("Invoice", "downloadInvoiceCsv", ["id" => $invoice->id])?>" title="CSV-Download"><i class="fas fa-file-csv fa-fw"></i></a></td>