Adjust property names
This commit is contained in:
@@ -17,15 +17,15 @@
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr v-for="event of events">
|
||||
<td>{{ formatBookingDate(event.buchungsdatum) }}</td>
|
||||
<td>{{ event.reisedatum | date }}</td>
|
||||
<td>{{ event.reise }}</td>
|
||||
<td>{{ formatBookingDate(event.dateBooking) }}</td>
|
||||
<td>{{ event.dateTravel | date }}</td>
|
||||
<td>{{ event.product }}</td>
|
||||
<td>
|
||||
<ul class="list-unstyled">
|
||||
<li v-for="customer in event.customers">{{ customer.name }}, {{ customer.vorname }}</li>
|
||||
<li v-for="customer in event.customers">{{ customer.lastName }}, {{ customer.firstName }}</li>
|
||||
</ul>
|
||||
</td>
|
||||
<td style="white-space: nowrap">{{ event.preis }} €</td>
|
||||
<td style="white-space: nowrap">{{ event.price }} €</td>
|
||||
<td style="white-space: nowrap">{{ calculateBalance(event) }}</td>
|
||||
<td>{{ status[event.status] }}</td>
|
||||
<td>
|
||||
|
||||
Reference in New Issue
Block a user