Erweiterungen

This commit is contained in:
2026-02-13 19:52:42 +01:00
parent d5cf0f53ba
commit ec1299d265
4 changed files with 9 additions and 1 deletions

Binary file not shown.

View File

@@ -520,6 +520,7 @@ public class AddJobView extends Main {
H3 pickupApptTitle = new H3("Termin (Abholung)");
pickupApptTitle.getStyle().set("margin", "0");
pickupTime = new TimePicker("Uhrzeit");
pickupTime.setLocale(java.util.Locale.GERMANY);
HorizontalLayout pickupApptRow = new HorizontalLayout(pickupDate, pickupTime);
pickupApptRow.setWidthFull();
pickupApptRow.setSpacing(true);
@@ -531,6 +532,7 @@ public class AddJobView extends Main {
H3 deliveryApptTitle = new H3("Termin (Lieferung)");
deliveryApptTitle.getStyle().set("margin", "0");
deliveryTime = new TimePicker("Uhrzeit");
deliveryTime.setLocale(java.util.Locale.GERMANY);
HorizontalLayout deliveryApptRow = new HorizontalLayout(deliveryDate, deliveryTime);
deliveryApptRow.setWidthFull();
deliveryApptRow.setSpacing(true);