Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
RechnungView
Please create a React-JS view called "RechnungView" for the fields of the Rechnung entity. The RechnungView must contain the following fields: - name: ErstelltAm type: DATE - name: FaelligAm type: DATE - name: GesamtBrutto type: DOUBLE - name: GesamtNetto type: DOUBLE - name: Notizen type: STRING - name: Patient type: Patient - name: RechnungsDatum type: DATE - name: RechnungsNummer type: STRING - name: Status type: STRING - name: SteuerBetrag type: DOUBLE - name: Versicherung type: Versicherung The data source for the [Versicherung] select control should be loaded from the relative URL: "/PatientService/versicherung" (HTTP-GET) The data source for the [Patient] select control should be loaded from the relative URL: "/PatientService/patient" (HTTP-GET) An existing Rechnung entity should be loaded from the relative URL: "/RechnungService/rechnung/{id}" (HTTP-GET) If a new Rechnung entity has been created, the new entity should be posted to the relative URL: "/RechnungService/rechnung" (HTTP-POST) If an existing Rechnung entity has been updated, the modified entity should be sent to the relative URL: "/RechnungService/rechnung/{id}" (HTTP-PUT) If an existing Rechnung entity has to be deleted, the following relative URL should be called: "/RechnungService/rechnung/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Zahlung columns: - column: ZahlungsDatum - column: Rechnung - column: TransaktionsReferenz - column: Notizen - column: ZahlungsMethode - column: Betrag The table should have the title "Zahlungs" und the data must be loaded from the server with the following relative URL: "/RechnungService/zahlung/rechnung/{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/rechnung/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum