Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
QualitaetsstandardApp
Please create a React-JS application for the QualitaetsstandardModule. The application has to offer the following views for the user interface: 1. PflegedienstQualitaetsstandardView 2. QualitaetsstandardView The views have to be reachable for the user via a menu list at the left side of each view. The requirements for the 2 views are defined below. 1. The PflegedienstQualitaetsstandardView must contain the following fields: - name: ImplementiertBis type: DATE - name: ImplementiertVon type: DATE - name: Pflegedienst type: Pflegedienst - name: Qualitaetsstandard type: Qualitaetsstandard The data source for the [Pflegedienst] select control should be loaded from the relative URL: "/PflegedienstService/pflegedienst" (HTTP-GET) The data source for the [Qualitaetsstandard] select control should be loaded from the relative URL: "/QualitaetsstandardService/qualitaetsstandard" (HTTP-GET) An existing PflegedienstQualitaetsstandard entity should be loaded from the relative URL: "/QualitaetsstandardService/pflegedienstqualitaetsstandard/{id}" (HTTP-GET) If a new PflegedienstQualitaetsstandard entity has been created, the new entity should be posted to the relative URL: "/QualitaetsstandardService/pflegedienstqualitaetsstandard" (HTTP-POST) If an existing PflegedienstQualitaetsstandard entity has been updated, the modified entity should be sent to the relative URL: "/QualitaetsstandardService/pflegedienstqualitaetsstandard/{id}" (HTTP-PUT) If an existing PflegedienstQualitaetsstandard entity has to be deleted, the following relative URL should be called: "/QualitaetsstandardService/pflegedienstqualitaetsstandard/{id}" (HTTP-DELETE) 2. The QualitaetsstandardView must contain the following fields: - name: Beschreibung type: STRING - name: Herausgeber type: STRING - name: IstVerpflichtend type: BOOL - name: Standardcode type: STRING - name: Titel type: STRING An existing Qualitaetsstandard entity should be loaded from the relative URL: "/QualitaetsstandardService/qualitaetsstandard/{id}" (HTTP-GET) If a new Qualitaetsstandard entity has been created, the new entity should be posted to the relative URL: "/QualitaetsstandardService/qualitaetsstandard" (HTTP-POST) If an existing Qualitaetsstandard entity has been updated, the modified entity should be sent to the relative URL: "/QualitaetsstandardService/qualitaetsstandard/{id}" (HTTP-PUT) If an existing Qualitaetsstandard entity has to be deleted, the following relative URL should be called: "/QualitaetsstandardService/qualitaetsstandard/{id}" (HTTP-DELETE) Add a HTML table to the view with the following PflegedienstQualitaetsstandard columns: - column: ImplementiertVon - column: Pflegedienst - column: ImplementiertBis - column: Qualitaetsstandard The table should have the title "PflegedienstQualitaetsstandards" und the data must be loaded from the server with the following relative URL: "/QualitaetsstandardService/pflegedienstqualitaetsstandard/qualitaetsstandard/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum