Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
LeistungskatalogEintragApp
Please create a React-JS application for the LeistungskatalogEintragModule. The application has to offer the following views for the user interface: 1. LeistungskatalogEintragView 2. PflegeplanView 3. PflegeplanEintragView 4. PflegevertragEintragView The views have to be reachable for the user via a menu list at the left side of each view. The requirements for the 4 views are defined below. 1. The LeistungskatalogEintragView must contain the following fields: - name: Code type: STRING - name: Detailbeschreibung type: STRING - name: ErfordertAerztlicheVerordnung type: BOOL - name: IstAktiv type: BOOL - name: Kategorie type: STRING - name: Kurzbeschreibung type: STRING - name: Pflegedienst type: Pflegedienst - name: StandarddauerMinuten type: INT The data source for the [Pflegedienst] select control should be loaded from the relative URL: "/PflegedienstService/pflegedienst" (HTTP-GET) An existing LeistungskatalogEintrag entity should be loaded from the relative URL: "/LeistungskatalogEintragService/leistungskatalogeintrag/{id}" (HTTP-GET) If a new LeistungskatalogEintrag entity has been created, the new entity should be posted to the relative URL: "/LeistungskatalogEintragService/leistungskatalogeintrag" (HTTP-POST) If an existing LeistungskatalogEintrag entity has been updated, the modified entity should be sent to the relative URL: "/LeistungskatalogEintragService/leistungskatalogeintrag/{id}" (HTTP-PUT) If an existing LeistungskatalogEintrag entity has to be deleted, the following relative URL should be called: "/LeistungskatalogEintragService/leistungskatalogeintrag/{id}" (HTTP-DELETE) Add a HTML table to the view with the following PflegeplanEintrag columns: - column: IndividuelleBeschreibung - column: Pflegeplan - column: ErfordertAerztlicheVerordnung - column: GeplanteDauerMinuten - column: Frequenzmuster - column: Prioritaet - column: LeistungskatalogEintrag The table should have the title "PflegeplanEintrags" und the data must be loaded from the server with the following relative URL: "/LeistungskatalogEintragService/pflegeplaneintrag/leistungskatalogeintrag/{id}" Add a HTML table to the view with the following Tarif columns: - column: Versicherung - column: GueltigBis - column: Einheit - column: Tarifname - column: Preis - column: GueltigVon - column: LeistungskatalogEintrag The table should have the title "Tarifs" und the data must be loaded from the server with the following relative URL: "/VersicherungService/tarif/leistungskatalogeintrag/{id}" Add a HTML table to the view with the following Rechnungsposition columns: - column: EinsatzLeistung - column: LeistungskatalogEintrag - column: Rechnung - column: Einzelpreis - column: Menge - column: Betrag - column: Beschreibung The table should have the title "Rechnungspositions" und the data must be loaded from the server with the following relative URL: "/VersicherungService/rechnungsposition/leistungskatalogeintrag/{id}" Add a HTML table to the view with the following PflegevertragEintrag columns: - column: IstOptional - column: Frequenzmuster - column: GeplanteDauerMinuten - column: LeistungskatalogEintrag - column: Pflegevertrag The table should have the title "PflegevertragEintrags" und the data must be loaded from the server with the following relative URL: "/LeistungskatalogEintragService/pflegevertrageintrag/leistungskatalogeintrag/{id}" Add a HTML table to the view with the following EinsatzLeistung columns: - column: TatsächlicheDauerMinuten - column: Notiz - column: Menge - column: IstTeilweise - column: Einsatz - column: LeistungskatalogEintrag - column: GeplanteDauerMinuten The table should have the title "EinsatzLeistungs" und the data must be loaded from the server with the following relative URL: "/EinsatzService/einsatzleistung/leistungskatalogeintrag/{id}" 2. The PflegeplanView must contain the following fields: - name: AktualisiertAm type: DATE - name: ErstelltAm type: DATE - name: ErstelltVonMitarbeiter type: INT - name: Klient type: Klient - name: Planstatus type: STRING - name: RisikoEinschaetzung type: STRING - name: Zielbeschreibung type: STRING The data source for the [Klient] select control should be loaded from the relative URL: "/PflegedienstService/klient" (HTTP-GET) An existing Pflegeplan entity should be loaded from the relative URL: "/LeistungskatalogEintragService/pflegeplan/{id}" (HTTP-GET) If a new Pflegeplan entity has been created, the new entity should be posted to the relative URL: "/LeistungskatalogEintragService/pflegeplan" (HTTP-POST) If an existing Pflegeplan entity has been updated, the modified entity should be sent to the relative URL: "/LeistungskatalogEintragService/pflegeplan/{id}" (HTTP-PUT) If an existing Pflegeplan entity has to be deleted, the following relative URL should be called: "/LeistungskatalogEintragService/pflegeplan/{id}" (HTTP-DELETE) Add a HTML table to the view with the following PflegeplanEintrag columns: - column: IndividuelleBeschreibung - column: Pflegeplan - column: ErfordertAerztlicheVerordnung - column: GeplanteDauerMinuten - column: Frequenzmuster - column: Prioritaet - column: LeistungskatalogEintrag The table should have the title "PflegeplanEintrags" und the data must be loaded from the server with the following relative URL: "/LeistungskatalogEintragService/pflegeplaneintrag/pflegeplan/{id}" 3. The PflegeplanEintragView must contain the following fields: - name: ErfordertAerztlicheVerordnung type: BOOL - name: Frequenzmuster type: STRING - name: GeplanteDauerMinuten type: INT - name: IndividuelleBeschreibung type: STRING - name: LeistungskatalogEintrag type: LeistungskatalogEintrag - name: Pflegeplan type: Pflegeplan - name: Prioritaet type: INT The data source for the [Pflegeplan] select control should be loaded from the relative URL: "/LeistungskatalogEintragService/pflegeplan" (HTTP-GET) The data source for the [LeistungskatalogEintrag] select control should be loaded from the relative URL: "/LeistungskatalogEintragService/leistungskatalogeintrag" (HTTP-GET) An existing PflegeplanEintrag entity should be loaded from the relative URL: "/LeistungskatalogEintragService/pflegeplaneintrag/{id}" (HTTP-GET) If a new PflegeplanEintrag entity has been created, the new entity should be posted to the relative URL: "/LeistungskatalogEintragService/pflegeplaneintrag" (HTTP-POST) If an existing PflegeplanEintrag entity has been updated, the modified entity should be sent to the relative URL: "/LeistungskatalogEintragService/pflegeplaneintrag/{id}" (HTTP-PUT) If an existing PflegeplanEintrag entity has to be deleted, the following relative URL should be called: "/LeistungskatalogEintragService/pflegeplaneintrag/{id}" (HTTP-DELETE) 4. The PflegevertragEintragView must contain the following fields: - name: Frequenzmuster type: STRING - name: GeplanteDauerMinuten type: INT - name: IstOptional type: BOOL - name: LeistungskatalogEintrag type: LeistungskatalogEintrag - name: Pflegevertrag type: Pflegevertrag The data source for the [LeistungskatalogEintrag] select control should be loaded from the relative URL: "/LeistungskatalogEintragService/leistungskatalogeintrag" (HTTP-GET) The data source for the [Pflegevertrag] select control should be loaded from the relative URL: "/PflegedienstService/pflegevertrag" (HTTP-GET) An existing PflegevertragEintrag entity should be loaded from the relative URL: "/LeistungskatalogEintragService/pflegevertrageintrag/{id}" (HTTP-GET) If a new PflegevertragEintrag entity has been created, the new entity should be posted to the relative URL: "/LeistungskatalogEintragService/pflegevertrageintrag" (HTTP-POST) If an existing PflegevertragEintrag entity has been updated, the modified entity should be sent to the relative URL: "/LeistungskatalogEintragService/pflegevertrageintrag/{id}" (HTTP-PUT) If an existing PflegevertragEintrag entity has to be deleted, the following relative URL should be called: "/LeistungskatalogEintragService/pflegevertrageintrag/{id}" (HTTP-DELETE)
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum