Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
TarifView
Please create a React-JS view called "TarifView" for the fields of the Tarif entity. The TarifView must contain the following fields: - name: Anmeldegebuehr type: STRING - name: Beschreibung type: STRING - name: CarsharingOrganisation type: CarsharingOrganisation - name: FreeFloatingTarif type: BOOL - name: Kaution type: STRING - name: KilometerAbrechnung type: BOOL - name: Monatspauschale type: STRING - name: Name type: STRING The data source for the [CarsharingOrganisation] select control should be loaded from the relative URL: "/CarsharingOrganisationService/carsharingorganisation" (HTTP-GET) An existing Tarif entity should be loaded from the relative URL: "/TarifService/tarif/{id}" (HTTP-GET) If a new Tarif entity has been created, the new entity should be posted to the relative URL: "/TarifService/tarif" (HTTP-POST) If an existing Tarif entity has been updated, the modified entity should be sent to the relative URL: "/TarifService/tarif/{id}" (HTTP-PUT) If an existing Tarif entity has to be deleted, the following relative URL should be called: "/TarifService/tarif/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Tarifkomponente columns: - column: Tarif - column: Komponententyp - column: PreisProEinheit - column: NurNebenzeit - column: Einheit - column: NurHauptzeit The table should have the title "Tarifkomponentes" und the data must be loaded from the server with the following relative URL: "/TarifService/tarifkomponente/tarif/{id}" Add a HTML table to the view with the following Reservierung columns: - column: StartGeplant - column: StationRueckgabe - column: StationAbholung - column: StorniertAm - column: Status - column: Mitgliedschaft - column: Tarif - column: EndeGeplant - column: Fahrzeug - column: ErstelltAm The table should have the title "Reservierungs" und the data must be loaded from the server with the following relative URL: "/StationService/reservierung/tarif/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum