PreorderBilling

This commit is contained in:
Frank Schubert
2025-03-31 13:50:49 +02:00
parent 21655c5ff4
commit 17405c8c5d
17 changed files with 704 additions and 43 deletions
+6 -3
View File
@@ -55,7 +55,7 @@ $pagination_entity_name = "Billingrecords";
</select>
</div>
<div class="col-1">
<label class="form-label" for="filter_fibu_account_number">Fibu Kontonummer</label>
<label class="form-label" for="filter_fibu_account_number">Kundennummer</label>
<input type="text" class="form-control" name="filter[fibu_account_number]" id="filter_fibu_account_number" value="<?=(array_key_exists("fibu_account_number", $filter)) ? $filter['fibu_account_number'] : ""?>"/>
</div>
@@ -156,7 +156,7 @@ $pagination_entity_name = "Billingrecords";
<th>Preis</th>
<th>Preis Setup</th>
<th>Zustellung</th>
<th></th>
<th>Erstellt</th>
</tr>
<?php foreach($billings as $billing): ?>
<tr>
@@ -186,7 +186,10 @@ $pagination_entity_name = "Billingrecords";
<td class="<?=($billing->price < 0) ? "text-danger" : ""?>">€ <?=number_format($billing->price,2,",",".")?></td>
<td class="<?=($billing->price_setup < 0) ? "text-danger" : ""?>">€ <?=number_format($billing->price_setup,2,",",".")?></td>
<td><?=($billing->billing_delivery == "email") ? "Email" : "Papier"?></td>
<td></td>
<td>
<?=$billing->creator->name?><br />
<?=date("d.m.Y H:i", $billing->create)?>
</td>
</tr>
<?php endforeach; ?>
</table>