Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
TierApp
Please create a React-JS application for the TierModule. The application has to offer the following views for the user interface: 1. AuslandsTierschutzOrganisationView 2. InternationalerTiertransferView 3. TierView 4. TierartView 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 AuslandsTierschutzOrganisationView must contain the following fields: - name: AdresseOrt type: STRING - name: AdressePlz type: STRING - name: AdresseStrasse type: STRING - name: HatImporterlaubnis type: BOOL - name: Land type: STRING - name: Name type: STRING An existing AuslandsTierschutzOrganisation entity should be loaded from the relative URL: "/TierService/auslandstierschutzorganisation/{id}" (HTTP-GET) If a new AuslandsTierschutzOrganisation entity has been created, the new entity should be posted to the relative URL: "/TierService/auslandstierschutzorganisation" (HTTP-POST) If an existing AuslandsTierschutzOrganisation entity has been updated, the modified entity should be sent to the relative URL: "/TierService/auslandstierschutzorganisation/{id}" (HTTP-PUT) If an existing AuslandsTierschutzOrganisation entity has to be deleted, the following relative URL should be called: "/TierService/auslandstierschutzorganisation/{id}" (HTTP-DELETE) Add a HTML table to the view with the following KastrationsProgramm columns: - column: Region - column: FuehrendeOrganisation - column: StartDatum - column: LaeuftNoch - column: EndDatum - column: Name - column: Land The table should have the title "KastrationsProgramms" und the data must be loaded from the server with the following relative URL: "/KastrationsProgrammService/kastrationsprogramm/fuehrendeorganisation/{id}" Add a HTML table to the view with the following InternationalerTiertransfer columns: - column: AuslandsTierschutzOrganisation - column: Tier - column: AuslandsTierheim - column: TransferDatum - column: Tierheim - column: GegenEntgelt - column: HatErforderlicheGenehmigung The table should have the title "InternationalerTiertransfers" und the data must be loaded from the server with the following relative URL: "/TierService/internationalertiertransfer/auslandstierschutzorganisation/{id}" 2. The InternationalerTiertransferView must contain the following fields: - name: AuslandsTierheim type: AuslandsTierheim - name: AuslandsTierschutzOrganisation type: AuslandsTierschutzOrganisation - name: GegenEntgelt type: BOOL - name: HatErforderlicheGenehmigung type: BOOL - name: Tier type: Tier - name: Tierheim type: Tierheim - name: TransferDatum type: DATE The data source for the [AuslandsTierheim] select control should be loaded from the relative URL: "/VeterinaerPraxisService/auslandstierheim" (HTTP-GET) The data source for the [AuslandsTierschutzOrganisation] select control should be loaded from the relative URL: "/TierService/auslandstierschutzorganisation" (HTTP-GET) The data source for the [Tierheim] select control should be loaded from the relative URL: "/TierheimService/tierheim" (HTTP-GET) The data source for the [Tier] select control should be loaded from the relative URL: "/TierService/tier" (HTTP-GET) An existing InternationalerTiertransfer entity should be loaded from the relative URL: "/TierService/internationalertiertransfer/{id}" (HTTP-GET) If a new InternationalerTiertransfer entity has been created, the new entity should be posted to the relative URL: "/TierService/internationalertiertransfer" (HTTP-POST) If an existing InternationalerTiertransfer entity has been updated, the modified entity should be sent to the relative URL: "/TierService/internationalertiertransfer/{id}" (HTTP-PUT) If an existing InternationalerTiertransfer entity has to be deleted, the following relative URL should be called: "/TierService/internationalertiertransfer/{id}" (HTTP-DELETE) 3. The TierView must contain the following fields: - name: AktuellerHalter type: Tierhalter - name: AufnahmeDatum type: DATE - name: GeburtsdatumUngefaehr type: DATE - name: Geschlecht type: STRING - name: IstGechippt type: BOOL - name: IstGefaehrlicherHund type: BOOL - name: IstGrundimmunisiert type: BOOL - name: IstKastriert type: BOOL - name: Name type: STRING - name: NochImTierheim type: BOOL - name: Tierart type: Tierart - name: Tierheim type: Tierheim - name: Tierstatus type: Tierstatus The data source for the [Tierstatus] select control should be loaded from the relative URL: "/KastrationsProgrammService/tierstatus" (HTTP-GET) The data source for the [Tierheim] select control should be loaded from the relative URL: "/TierheimService/tierheim" (HTTP-GET) The data source for the [AktuellerHalter] select control should be loaded from the relative URL: "/TierhalterService/tierhalter" (HTTP-GET) The data source for the [Tierart] select control should be loaded from the relative URL: "/TierService/tierart" (HTTP-GET) An existing Tier entity should be loaded from the relative URL: "/TierService/tier/{id}" (HTTP-GET) If a new Tier entity has been created, the new entity should be posted to the relative URL: "/TierService/tier" (HTTP-POST) If an existing Tier entity has been updated, the modified entity should be sent to the relative URL: "/TierService/tier/{id}" (HTTP-PUT) If an existing Tier entity has to be deleted, the following relative URL should be called: "/TierService/tier/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Tieraufnahme columns: - column: Beschreibung - column: TierherkunftsArt - column: Gemeinde - column: AufnahmeDatum - column: Tier - column: Finder - column: Behoerde The table should have the title "Tieraufnahmes" und the data must be loaded from the server with the following relative URL: "/TierherkunftsArtService/tieraufnahme/tier/{id}" Add a HTML table to the view with the following Fundmeldung columns: - column: Melder - column: Gemeinde - column: Tier - column: Meldedatum - column: BesitzerBekannt - column: FundortBeschreibung The table should have the title "Fundmeldungs" und the data must be loaded from the server with the following relative URL: "/TierhalterService/fundmeldung/tier/{id}" Add a HTML table to the view with the following TierBehandlung columns: - column: VeterinaerPraxis - column: Datum - column: BehandlungsArt - column: Kosten - column: Tier - column: ErstattbarDurchGemeinde The table should have the title "TierBehandlungs" und the data must be loaded from the server with the following relative URL: "/VeterinaerPraxisService/tierbehandlung/tier/{id}" Add a HTML table to the view with the following InternationalerTiertransfer columns: - column: AuslandsTierschutzOrganisation - column: Tier - column: AuslandsTierheim - column: TransferDatum - column: Tierheim - column: GegenEntgelt - column: HatErforderlicheGenehmigung The table should have the title "InternationalerTiertransfers" und the data must be loaded from the server with the following relative URL: "/TierService/internationalertiertransfer/tier/{id}" Add a HTML table to the view with the following Tierabgabe columns: - column: NeuerHalter - column: Tier - column: Datum - column: Bemerkung - column: Art - column: Vertragsreferenz The table should have the title "Tierabgabes" und the data must be loaded from the server with the following relative URL: "/TierhalterService/tierabgabe/tier/{id}" Add a HTML table to the view with the following AdoptionsVertrag columns: - column: Vertragsart - column: Vertragsdatum - column: HatRueckgabepflicht - column: HatKontrollklauseln - column: NeuerHalter - column: Tierheim - column: Gebuehr - column: Tier The table should have the title "AdoptionsVertrags" und the data must be loaded from the server with the following relative URL: "/TierschutzVereinService/adoptionsvertrag/tier/{id}" Add a HTML table to the view with the following KastrationsProgrammTier columns: - column: KastrationsDatum - column: ZurueckAnFundort - column: KastrationsProgramm - column: Tier The table should have the title "KastrationsProgrammTiers" und the data must be loaded from the server with the following relative URL: "/KastrationsProgrammService/kastrationsprogrammtier/tier/{id}" 4. The TierartView must contain the following fields: - name: IstHaustier type: BOOL - name: IstWildtier type: BOOL - name: Name type: STRING An existing Tierart entity should be loaded from the relative URL: "/TierService/tierart/{id}" (HTTP-GET) If a new Tierart entity has been created, the new entity should be posted to the relative URL: "/TierService/tierart" (HTTP-POST) If an existing Tierart entity has been updated, the modified entity should be sent to the relative URL: "/TierService/tierart/{id}" (HTTP-PUT) If an existing Tierart entity has to be deleted, the following relative URL should be called: "/TierService/tierart/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Tier columns: - column: GeburtsdatumUngefaehr - column: Tierstatus - column: AktuellerHalter - column: NochImTierheim - column: IstGechippt - column: Tierart - column: AufnahmeDatum - column: Tierheim - column: Geschlecht - column: IstGrundimmunisiert - column: Name - column: IstKastriert - column: IstGefaehrlicherHund The table should have the title "Tiers" und the data must be loaded from the server with the following relative URL: "/TierService/tier/tierart/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum