Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
LeistungView
Please create a React-JS view called "LeistungView" for the fields of the Leistung entity. The LeistungView must contain the following fields: - name: BasisPreis type: DOUBLE - name: Beschreibung type: STRING - name: DauerMinuten type: LONG - name: IstAktiv type: BOOL - name: IstMedizinisch type: BOOL - name: LeistungsKategorie type: LeistungsKategorie - name: Name type: STRING The data source for the [LeistungsKategorie] select control should be loaded from the relative URL: "/AusstattungService/leistungskategorie" (HTTP-GET) An existing Leistung entity should be loaded from the relative URL: "/LeistungService/leistung/{id}" (HTTP-GET) If a new Leistung entity has been created, the new entity should be posted to the relative URL: "/LeistungService/leistung" (HTTP-POST) If an existing Leistung entity has been updated, the modified entity should be sent to the relative URL: "/LeistungService/leistung/{id}" (HTTP-PUT) If an existing Leistung entity has to be deleted, the following relative URL should be called: "/LeistungService/leistung/{id}" (HTTP-DELETE) Add a HTML table to the view with the following BehandlungsSitzung columns: - column: Leistung - column: Notizen - column: DauerMinuten - column: Mitarbeiter - column: DurchgefuehrtAm - column: Termin - column: Patient - column: FolgeTerminNoetig The table should have the title "BehandlungsSitzungs" und the data must be loaded from the server with the following relative URL: "/LeistungService/behandlungssitzung/leistung/{id}" Add a HTML table to the view with the following RechnungsPosition columns: - column: Beschreibung - column: SteuerSatz - column: Menge - column: BetragNetto - column: Leistung - column: EinzelPreis - column: Rechnung - column: BetragSteuer - column: BetragBrutto The table should have the title "RechnungsPositions" und the data must be loaded from the server with the following relative URL: "/RechnungService/rechnungsposition/leistung/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum