feat: don't display prices in MyE&P

This commit is contained in:
Björn Fromme
2024-12-16 10:54:43 +01:00
parent be88129149
commit a611e8a3de
@@ -30,15 +30,15 @@
<li class="p-2 border-b border-zinc-200 last:border-0">
<strong>Anmelder:</strong> {{ bookingData.applicant.firstName }} {{ bookingData.applicant.lastName }}
</li>
<li class="p-2 border-b border-zinc-200 last:border-0">
<strong>Gesamtpreis:</strong> {{ totalPrice.toFixed(2) }}
</li>
<li class="p-2 border-b border-zinc-200 last:border-0">
<strong>Teilnehmer:</strong> {{ participantsCount.active }}
</li>
<li class="p-2 border-b border-zinc-200 last:border-0">
<strong>Stornos:</strong> {{ participantsCount.canceled }}
</li>
<li class="p-2 border-b border-zinc-200 last:border-0">
<strong>Gesamtpreis:</strong> Es gelten die in der Rechnung angegebenen Preise
</li>
</ul>
</panel>
<services-overview :services="services.other" :participant-data="participantData"/>
@@ -151,10 +151,6 @@
</ul>
</td>
</tr>
<tr>
<th>Gesamtpreis</th>
<td>{{ calculateSinglePrice(participant).toFixed(2) }} </td>
</tr>
</tbody>
</table>
</div>