Fix #138
All checks were successful
Build and Push Docker Images / build-backend (push) Successful in 16s
Build and Push Docker Images / build-frontend (push) Successful in 52s

This commit is contained in:
2026-03-17 18:10:32 +01:00
parent 6919de096a
commit da50782ffc
5 changed files with 89 additions and 28 deletions

View File

@@ -152,7 +152,10 @@
<div class="space-y-4">
<UFormGroup label="Ausführungsdatum (Belegdatum)" help="Dieses Datum steuert auch den Leistungszeitraum (z.B. Vormonat bei 'Rückwirkend').">
<UInput type="date" v-model="executionDate" />
<div class="flex items-center gap-2">
<UInput type="date" v-model="executionDate" class="flex-1" />
<UButton color="gray" variant="soft" label="Heute" @click="setExecutionDateToToday" />
</div>
</UFormGroup>
<UDivider label="Vorlagen auswählen" />
@@ -303,6 +306,10 @@ const isExecuting = ref(false)
const modalSearch = ref("") // NEU: Suchstring für das Modal
const selectedExecutionIntervall = ref("all")
const setExecutionDateToToday = () => {
executionDate.value = dayjs().format('YYYY-MM-DD')
}
// --- SerialExecutions State ---
const showExecutionsSlideover = ref(false)
const executionItems = ref([])