Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
QualifikationApp
Please create a React-JS application for the QualifikationModule. The application has to offer the following views for the user interface: 1. MitarbeiterQualifikationView 2. QualifikationView 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 MitarbeiterQualifikationView must contain the following fields: - name: Erwerbsdatum type: DATE - name: GueltigBis type: DATE - name: Mitarbeiter type: Mitarbeiter - name: Qualifikation type: Qualifikation - name: ZertifikatReferenz type: STRING The data source for the [Qualifikation] select control should be loaded from the relative URL: "/QualifikationService/qualifikation" (HTTP-GET) The data source for the [Mitarbeiter] select control should be loaded from the relative URL: "/MitarbeiterService/mitarbeiter" (HTTP-GET) An existing MitarbeiterQualifikation entity should be loaded from the relative URL: "/QualifikationService/mitarbeiterqualifikation/{id}" (HTTP-GET) If a new MitarbeiterQualifikation entity has been created, the new entity should be posted to the relative URL: "/QualifikationService/mitarbeiterqualifikation" (HTTP-POST) If an existing MitarbeiterQualifikation entity has been updated, the modified entity should be sent to the relative URL: "/QualifikationService/mitarbeiterqualifikation/{id}" (HTTP-PUT) If an existing MitarbeiterQualifikation entity has to be deleted, the following relative URL should be called: "/QualifikationService/mitarbeiterqualifikation/{id}" (HTTP-DELETE) 2. The QualifikationView must contain the following fields: - name: ErfordertStaatlicheAnerkennung type: BOOL - name: Kategorie type: STRING - name: Qualifikationsname type: STRING An existing Qualifikation entity should be loaded from the relative URL: "/QualifikationService/qualifikation/{id}" (HTTP-GET) If a new Qualifikation entity has been created, the new entity should be posted to the relative URL: "/QualifikationService/qualifikation" (HTTP-POST) If an existing Qualifikation entity has been updated, the modified entity should be sent to the relative URL: "/QualifikationService/qualifikation/{id}" (HTTP-PUT) If an existing Qualifikation entity has to be deleted, the following relative URL should be called: "/QualifikationService/qualifikation/{id}" (HTTP-DELETE) Add a HTML table to the view with the following MitarbeiterQualifikation columns: - column: Mitarbeiter - column: GueltigBis - column: ZertifikatReferenz - column: Erwerbsdatum - column: Qualifikation The table should have the title "MitarbeiterQualifikations" und the data must be loaded from the server with the following relative URL: "/QualifikationService/mitarbeiterqualifikation/qualifikation/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum