58 lines
1.2 KiB
Plaintext
58 lines
1.2 KiB
Plaintext
<%- include("../partials/page-header", {
|
|
user,
|
|
title: t.patienteoverview.patienttitle,
|
|
subtitle: "",
|
|
showUserName: true
|
|
}) %>
|
|
|
|
<!-- CONTENT -->
|
|
<div class="container mt-4">
|
|
<%- include("../partials/flash") %>
|
|
<h4>Stornierte Rechnungen</h4>
|
|
|
|
<!-- ✅ Jahresfilter -->
|
|
<form method="GET" action="/invoices/cancelled" style="margin-bottom:20px;">
|
|
<label>Jahr:</label>
|
|
|
|
<select
|
|
name="year"
|
|
onchange="this.form.submit()"
|
|
class="form-select"
|
|
style="width:150px; display:inline-block;"
|
|
>
|
|
<% years.forEach(y => { %>
|
|
<option value="<%= y %>" <%= y == selectedYear ? "selected" : "" %>>
|
|
<%= y %>
|
|
</option>
|
|
<% }) %>
|
|
</select>
|
|
</form>
|
|
|
|
<% if (invoices.length === 0) { %>
|
|
<p>Keine stornierten Rechnungen für dieses Jahr.</p>
|
|
<% } else { %>
|
|
|
|
<table class="table">
|
|
<thead>
|
|
<tr>
|
|
<th>#</th>
|
|
<th>Patient</th>
|
|
<th>Datum</th>
|
|
<th>Betrag</th>
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody>
|
|
<% invoices.forEach(inv => { %>
|
|
<tr>
|
|
<td><%= inv.id %></td>
|
|
<td><%= inv.firstname %> <%= inv.lastname %></td>
|
|
<td><%= inv.invoice_date_formatted %></td>
|
|
<td><%= inv.total_amount_formatted %> €</td>
|
|
</tr>
|
|
<% }) %>
|
|
</tbody>
|
|
</table>
|
|
|
|
<% } %>
|