Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
BaeckereiApp
Please create a React-JS application for the BaeckereiModule. The application has to offer the following views for the user interface: 1. BaeckereiView 2. ExternerLinkView 3. StatistikJahrView The views have to be reachable for the user via a menu list at the left side of each view. The requirements for the 3 views are defined below. 1. The BaeckereiView must contain the following fields: - name: Beschreibung type: STRING - name: Gruendungsjahr type: INT - name: Hauptadresse type: Adresse - name: IstHandwerk type: BOOL - name: IstIndustrie type: BOOL - name: Name type: STRING - name: Rechtsform type: STRING The data source for the [Hauptadresse] select control should be loaded from the relative URL: "/AdresseService/adresse" (HTTP-GET) An existing Baeckerei entity should be loaded from the relative URL: "/BaeckereiService/baeckerei/{id}" (HTTP-GET) If a new Baeckerei entity has been created, the new entity should be posted to the relative URL: "/BaeckereiService/baeckerei" (HTTP-POST) If an existing Baeckerei entity has been updated, the modified entity should be sent to the relative URL: "/BaeckereiService/baeckerei/{id}" (HTTP-PUT) If an existing Baeckerei entity has to be deleted, the following relative URL should be called: "/BaeckereiService/baeckerei/{id}" (HTTP-DELETE) Add a HTML table to the view with the following BaeckereiFiliale columns: - column: Eroeffnungsdatum - column: Schliessungsdatum - column: Baeckerei - column: Adresse - column: Name - column: Filialtyp - column: IstSelbstbedienung The table should have the title "BaeckereiFiliales" und the data must be loaded from the server with the following relative URL: "/AdresseService/baeckereifiliale/baeckerei/{id}" Add a HTML table to the view with the following ExternerLink columns: - column: Titel - column: Baeckerei - column: Url - column: Beschreibung The table should have the title "ExternerLinks" und the data must be loaded from the server with the following relative URL: "/BaeckereiService/externerlink/baeckerei/{id}" Add a HTML table to the view with the following Produkt columns: - column: IstSaisonal - column: IstHandgemacht - column: IstTiefgekuehlt - column: Name - column: Produktkategorie - column: Baeckerei The table should have the title "Produkts" und the data must be loaded from the server with the following relative URL: "/ZutatService/produkt/baeckerei/{id}" Add a HTML table to the view with the following BaeckereiLiteratur columns: - column: Literatur - column: Baeckerei The table should have the title "BaeckereiLiteraturs" und the data must be loaded from the server with the following relative URL: "/LiteraturService/baeckereiliteratur/baeckerei/{id}" Add a HTML table to the view with the following Mitarbeiter columns: - column: Geburtsdatum - column: Baeckerei - column: Beruf - column: IstAzubi - column: Vorname - column: Einstellungsdatum - column: Nachname The table should have the title "Mitarbeiters" und the data must be loaded from the server with the following relative URL: "/MitarbeiterService/mitarbeiter/baeckerei/{id}" Add a HTML table to the view with the following Produktionsstandort columns: - column: HatBackstubenMuseum - column: Produktionsskala - column: Baeckerei - column: Name - column: IstVollautomatisiert - column: Adresse The table should have the title "Produktionsstandorts" und the data must be loaded from the server with the following relative URL: "/ProduktionsstandortService/produktionsstandort/baeckerei/{id}" 2. The ExternerLinkView must contain the following fields: - name: Baeckerei type: Baeckerei - name: Beschreibung type: STRING - name: Titel type: STRING - name: Url type: STRING The data source for the [Baeckerei] select control should be loaded from the relative URL: "/BaeckereiService/baeckerei" (HTTP-GET) An existing ExternerLink entity should be loaded from the relative URL: "/BaeckereiService/externerlink/{id}" (HTTP-GET) If a new ExternerLink entity has been created, the new entity should be posted to the relative URL: "/BaeckereiService/externerlink" (HTTP-POST) If an existing ExternerLink entity has been updated, the modified entity should be sent to the relative URL: "/BaeckereiService/externerlink/{id}" (HTTP-PUT) If an existing ExternerLink entity has to be deleted, the following relative URL should be called: "/BaeckereiService/externerlink/{id}" (HTTP-DELETE) 3. The StatistikJahrView must contain the following fields: - name: Jahr type: INT An existing StatistikJahr entity should be loaded from the relative URL: "/BaeckereiService/statistikjahr/{id}" (HTTP-GET) If a new StatistikJahr entity has been created, the new entity should be posted to the relative URL: "/BaeckereiService/statistikjahr" (HTTP-POST) If an existing StatistikJahr entity has been updated, the modified entity should be sent to the relative URL: "/BaeckereiService/statistikjahr/{id}" (HTTP-PUT) If an existing StatistikJahr entity has to be deleted, the following relative URL should be called: "/BaeckereiService/statistikjahr/{id}" (HTTP-DELETE) Add a HTML table to the view with the following BaeckereiStatistik columns: - column: AnzahlMitarbeiter - column: AnzahlBaeckereien - column: StatistikJahr - column: GesamtUmsatzMioEuro - column: Groessenklasse - column: AnzahlAzubis - column: Land The table should have the title "BaeckereiStatistiks" und the data must be loaded from the server with the following relative URL: "/LandService/baeckereistatistik/statistikjahr/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum