Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
RechnungsPositionView
Please create a React-JS view called "RechnungsPositionView" for the fields of the RechnungsPosition entity. The RechnungsPositionView must contain the following fields: - name: Beschreibung type: STRING - name: BetragBrutto type: DOUBLE - name: BetragNetto type: DOUBLE - name: BetragSteuer type: DOUBLE - name: EinzelPreis type: DOUBLE - name: Leistung type: Leistung - name: Menge type: DOUBLE - name: Rechnung type: Rechnung - name: SteuerSatz type: DOUBLE The data source for the [Rechnung] select control should be loaded from the relative URL: "/RechnungService/rechnung" (HTTP-GET) The data source for the [Leistung] select control should be loaded from the relative URL: "/LeistungService/leistung" (HTTP-GET) An existing RechnungsPosition entity should be loaded from the relative URL: "/RechnungService/rechnungsposition/{id}" (HTTP-GET) If a new RechnungsPosition entity has been created, the new entity should be posted to the relative URL: "/RechnungService/rechnungsposition" (HTTP-POST) If an existing RechnungsPosition entity has been updated, the modified entity should be sent to the relative URL: "/RechnungService/rechnungsposition/{id}" (HTTP-PUT) If an existing RechnungsPosition entity has to be deleted, the following relative URL should be called: "/RechnungService/rechnungsposition/{id}" (HTTP-DELETE)
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum