new features
This commit is contained in:
@@ -203,7 +203,6 @@ const VehicleBookingListWidget: React.FC = () => {
|
|||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
{booking.fahrzeug_name}
|
{booking.fahrzeug_name}
|
||||||
{booking.fahrzeug_kennzeichen ? ` · ${booking.fahrzeug_kennzeichen}` : ''}
|
|
||||||
</Typography>
|
</Typography>
|
||||||
</Box>
|
</Box>
|
||||||
</ListItem>
|
</ListItem>
|
||||||
|
|||||||
@@ -858,7 +858,7 @@ async function generateBookingsPdf(
|
|||||||
|
|
||||||
const active = bookings.filter((b) => !b.abgesagt);
|
const active = bookings.filter((b) => !b.abgesagt);
|
||||||
const rows = active.map((b) => [
|
const rows = active.map((b) => [
|
||||||
b.fahrzeug_name + (b.fahrzeug_kennzeichen ? `\n${b.fahrzeug_kennzeichen}` : ''),
|
b.fahrzeug_name,
|
||||||
b.titel,
|
b.titel,
|
||||||
formatDt(b.beginn),
|
formatDt(b.beginn),
|
||||||
formatDt(b.ende),
|
formatDt(b.ende),
|
||||||
|
|||||||
Reference in New Issue
Block a user