Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
UnterkunftView
Please create a React-JS view called "UnterkunftView" for the fields of the Unterkunft entity. The UnterkunftView must contain the following fields: - name: Beschreibung type: STRING - name: Eigentuemer type: Eigentuemer - name: Ferienanlage type: Ferienanlage - name: Flaeche type: STRING - name: HatPrivatenEingang type: BOOL - name: IstTeilFerienanlage type: BOOL - name: IstTeilWohngebaeude type: BOOL - name: MaxPersonen type: LONG - name: Name type: STRING - name: Ort type: STRING - name: Typ type: STRING - name: Vermittler type: Vermittler The data source for the [Eigentuemer] select control should be loaded from the relative URL: "/UnterkunftService/eigentuemer" (HTTP-GET) The data source for the [Ferienanlage] select control should be loaded from the relative URL: "/UnterkunftService/ferienanlage" (HTTP-GET) The data source for the [Vermittler] select control should be loaded from the relative URL: "/VermittlerService/vermittler" (HTTP-GET) An existing Unterkunft entity should be loaded from the relative URL: "/UnterkunftService/unterkunft/{id}" (HTTP-GET) If a new Unterkunft entity has been created, the new entity should be posted to the relative URL: "/UnterkunftService/unterkunft" (HTTP-POST) If an existing Unterkunft entity has been updated, the modified entity should be sent to the relative URL: "/UnterkunftService/unterkunft/{id}" (HTTP-PUT) If an existing Unterkunft entity has to be deleted, the following relative URL should be called: "/UnterkunftService/unterkunft/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Buchung columns: - column: BuchungsDatum - column: Status - column: Unterkunft - column: Vermittler - column: Gesamtpreis - column: EndeDatum - column: BeginnDatum - column: Gast The table should have the title "Buchungs" und the data must be loaded from the server with the following relative URL: "/BuchungService/buchung/unterkunft/{id}" Add a HTML table to the view with the following VermittlerProvision columns: - column: Vermittler - column: Betrag - column: Einheit - column: Unterkunft - column: ProvisionsTyp The table should have the title "VermittlerProvisions" und the data must be loaded from the server with the following relative URL: "/VermittlerService/vermittlerprovision/unterkunft/{id}" Add a HTML table to the view with the following Rechtsbeschraenkung columns: - column: Beschreibung - column: RechtsQuelle - column: BeschraenkungsTyp - column: Unterkunft - column: GueltigBis - column: GueltigAb The table should have the title "Rechtsbeschraenkungs" und the data must be loaded from the server with the following relative URL: "/VermittlerService/rechtsbeschraenkung/unterkunft/{id}" Add a HTML table to the view with the following Foto columns: - column: Url - column: Unterkunft - column: Titel The table should have the title "Fotos" und the data must be loaded from the server with the following relative URL: "/SteuerregelService/foto/unterkunft/{id}" Add a HTML table to the view with the following Zusatzkosten columns: - column: Unterkunft - column: Name - column: Betrag - column: Einheit The table should have the title "Zusatzkostens" und the data must be loaded from the server with the following relative URL: "/UnterkunftService/zusatzkosten/unterkunft/{id}" Add a HTML table to the view with the following Raum columns: - column: Unterkunft - column: Beschreibung - column: Typ - column: Etage The table should have the title "Raums" und the data must be loaded from the server with the following relative URL: "/SteuerregelService/raum/unterkunft/{id}" Add a HTML table to the view with the following UnterkunftSteuerregel columns: - column: Steuerregel - column: Unterkunft The table should have the title "UnterkunftSteuerregels" und the data must be loaded from the server with the following relative URL: "/SteuerregelService/unterkunftsteuerregel/unterkunft/{id}" Add a HTML table to the view with the following UnterkunftAusstattung columns: - column: Ausstattung - column: Unterkunft The table should have the title "UnterkunftAusstattungs" und the data must be loaded from the server with the following relative URL: "/UnterkunftService/unterkunftausstattung/unterkunft/{id}" Add a HTML table to the view with the following Preis columns: - column: GueltigBis - column: InklusiveEndreinigung - column: PreisProWoche - column: PreisProPerson - column: InklusiveStrom - column: Unterkunft - column: PreisProNacht - column: GueltigAb The table should have the title "Preiss" und the data must be loaded from the server with the following relative URL: "/BuchungService/preis/unterkunft/{id}" Add a HTML table to the view with the following Klassifikation columns: - column: Organisation - column: Sterne - column: GueltigAb - column: GueltigBis - column: Unterkunft - column: Notizen The table should have the title "Klassifikations" und the data must be loaded from the server with the following relative URL: "/SteuerregelService/klassifikation/unterkunft/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum