Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/sprint' into feat/DAVE-108_Expor…
Browse files Browse the repository at this point in the history
…t-pdf-report
  • Loading branch information
Der-Alex-K committed Mar 26, 2024
2 parents 6a4d9ad + ec99db0 commit 66fae52
Show file tree
Hide file tree
Showing 11 changed files with 775 additions and 22 deletions.
1 change: 1 addition & 0 deletions frontend/components.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ declare module '@vue/runtime-core' {
BelastungsplanKreisverkehr: typeof import('./src/components/zaehlstelle/charts/BelastungsplanKreisverkehr.vue')['default']
BelastungsplanKreuzungSvg: typeof import('./src/components/zaehlstelle/charts/BelastungsplanKreuzungSvg.vue')['default']
BelastungsplanKreuzungSvgSchematischeUebersicht: typeof import('./src/components/zaehlstelle/charts/BelastungsplanKreuzungSvgSchematischeUebersicht.vue')['default']
BelastungsplanMessquerschnittCard: typeof import('./src/components/messstelle/charts/BelastungsplanMessquerschnittCard.vue')['default']
DarstellungsoptionenPanel: typeof import('./src/components/zaehlstelle/optionsmenue/panels/DarstellungsoptionenPanel.vue')['default']
DarstellungsoptionenPanelBelastungsplanContent: typeof import('./src/components/messstelle/optionsmenue/panels/content/DarstellungsoptionenPanelBelastungsplanContent.vue')['default']
DarstellungsoptionenPanelGanglinieContent: typeof import('./src/components/messstelle/optionsmenue/panels/content/DarstellungsoptionenPanelGanglinieContent.vue')['default']
Expand Down
3 changes: 2 additions & 1 deletion frontend/src/api/service/LadeMessdatenService.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import FetchService from "@/api/service/FetchService";
import LadeProcessedZaehldatenDTO from "@/types/zaehlung/zaehldaten/LadeProcessedZaehldatenDTO";
import MessstelleOptionsDTO from "@/types/messstelle/MessstelleOptionsDTO";
import LadeProcessedMessdatenDTO from "@/types/messstelle/LadeProcessedMessdatenDTO";

export default class LadeMessdatenService {
private static readonly ENDPOINT_LADE_MESSDATEN_PROCESSED: string =
Expand All @@ -9,7 +10,7 @@ export default class LadeMessdatenService {
public static ladeMessdatenProcessed(
messstelleId: string,
options: MessstelleOptionsDTO
): Promise<LadeProcessedZaehldatenDTO> {
): Promise<LadeProcessedMessdatenDTO> {
return FetchService.postData(
options,
`${this.ENDPOINT_LADE_MESSDATEN_PROCESSED}?messstelle_id=${messstelleId}`,
Expand Down
Loading

0 comments on commit 66fae52

Please sign in to comment.