Add useful informations on solidarity transport journeys

This commit is contained in:
Arnaud Delcasse
2026-02-03 08:44:51 +01:00
parent 2fa405edb0
commit 764b301dbb
2 changed files with 26 additions and 1 deletions

View File

@@ -128,6 +128,7 @@
<th scope="col" class="px-3 py-3.5 text-left text-sm font-semibold text-gray-900">Lieu de départ</th>
<th scope="col" class="px-3 py-3.5 text-left text-sm font-semibold text-gray-900">Distance conducteur</th>
<th scope="col" class="px-3 py-3.5 text-left text-sm font-semibold text-gray-900">Distance passager</th>
<th scope="col" class="px-3 py-3.5 text-left text-sm font-semibold text-gray-900">Dernier trajet (-{{$.ViewState.last_trip_days}}j)</th>
<th scope="col" class="px-3 py-3.5 text-left text-sm font-semibold text-gray-900">Prix passager</th>
<th scope="col" class="px-3 py-3.5 text-left text-sm font-semibold text-gray-900">Indemnité conducteur</th>
<th scope="col" class="px-3 py-3.5 text-left text-sm font-semibold text-gray-900">Commentaire</th>
@@ -142,6 +143,7 @@
{{$driver := index $.ViewState.replacement_drivers_map $journey.DriverId}}
{{$pricing := index $.ViewState.replacement_pricing $journey.Id}}
{{$location := index $.ViewState.replacement_locations $journey.Id}}
{{$lastTrip := index $.ViewState.driver_last_trips $journey.DriverId}}
<tr>
<td class="whitespace-nowrap py-4 pl-4 pr-3 text-sm font-medium text-gray-900 sm:pl-6">
{{$driver.Data.first_name}} {{$driver.Data.last_name}}
@@ -155,6 +157,15 @@
<td class="whitespace-nowrap px-3 py-4 text-sm text-gray-500">
{{$journey.PassengerDistance}} km
</td>
<td class="whitespace-nowrap px-3 py-4 text-sm text-gray-500">
{{if $lastTrip.IsZero}}
<span class="text-gray-400">-</span>
{{else if eq ($lastTrip.Format "2006-01-02") ($.ViewState.booking.Journey.PassengerPickupDate.Format "2006-01-02")}}
<span class="text-red-600 font-semibold">{{ $lastTrip.Format "02/01/2006" }}</span>
{{else}}
{{ $lastTrip.Format "02/01/2006" }}
{{end}}
</td>
<td class="whitespace-nowrap px-3 py-4 text-sm text-gray-500">
{{if $pricing}}
{{printf "%.2f" $pricing.passenger.amount}} {{$pricing.passenger.currency}}