Adjust property names

This commit is contained in:
Björn Fromme
2019-11-18 17:30:54 +01:00
parent 635b0ee4af
commit 187539d088
@@ -17,15 +17,15 @@
</thead> </thead>
<tbody> <tbody>
<tr v-for="event of events"> <tr v-for="event of events">
<td>{{ formatBookingDate(event.buchungsdatum) }}</td> <td>{{ formatBookingDate(event.dateBooking) }}</td>
<td>{{ event.reisedatum | date }}</td> <td>{{ event.dateTravel | date }}</td>
<td>{{ event.reise }}</td> <td>{{ event.product }}</td>
<td> <td>
<ul class="list-unstyled"> <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> </ul>
</td> </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 style="white-space: nowrap">{{ calculateBalance(event) }}</td>
<td>{{ status[event.status] }}</td> <td>{{ status[event.status] }}</td>
<td> <td>