feat: Fahrkosten 'Bis Datum' Filter (Default heute) — Version 1.11.0

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-07-10 15:42:28 +02:00
parent 7c11683515
commit ba869e373d
4 changed files with 68 additions and 18 deletions
+3 -2
View File
@@ -148,11 +148,12 @@ export interface FahrkostenRow {
ID: number;
Kuerzel: string;
Name: string;
Km: number;
Anzahl: number;
}
export async function getFahrkosten(ab: string): Promise<FahrkostenRow[]> {
return call('LB_FAHRKOSTEN', { ab });
export async function getFahrkosten(ab: string, bis: string): Promise<FahrkostenRow[]> {
return call('LB_FAHRKOSTEN', { ab, bis });
}
export interface StatistikResult {