Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
PflegedienstApp
Please create a React-JS application for the PflegedienstModule. The application has to offer the following views for the user interface: 1. KlientView 2. MedikationsplanView 3. PflegedienstView 4. PflegevertragView 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 KlientView must contain the following fields: - name: EMailAdresse type: STRING - name: Familienstand type: STRING - name: Geburtsdatum type: DATE - name: Geschlecht type: STRING - name: GesetzlicherBetreuer type: Gesetz - name: Hauptdiagnose type: STRING - name: Hauptstandort type: INT - name: IstVerstorben type: BOOL - name: Lebenssituation type: STRING - name: Nachname type: STRING - name: Pflegedienst type: Pflegedienst - name: Pflegegrad type: INT - name: Sterbedatum type: DATE - name: Telefonnummer type: STRING - name: Vorname type: STRING - name: Wohnort type: INT The data source for the [Pflegedienst] select control should be loaded from the relative URL: "/PflegedienstService/pflegedienst" (HTTP-GET) The data source for the [GesetzlicherBetreuer] select control should be loaded from the relative URL: "/GesetzService/gesetz" (HTTP-GET) An existing Klient entity should be loaded from the relative URL: "/PflegedienstService/klient/{id}" (HTTP-GET) If a new Klient entity has been created, the new entity should be posted to the relative URL: "/PflegedienstService/klient" (HTTP-POST) If an existing Klient entity has been updated, the modified entity should be sent to the relative URL: "/PflegedienstService/klient/{id}" (HTTP-PUT) If an existing Klient entity has to be deleted, the following relative URL should be called: "/PflegedienstService/klient/{id}" (HTTP-DELETE) Add a HTML table to the view with the following PflegeDokumentation columns: - column: ErstelltVonMitarbeiter - column: Zeitpunkt - column: Dokumentationstyp - column: Textinhalt - column: Klient - column: Einsatz The table should have the title "PflegeDokumentations" und the data must be loaded from the server with the following relative URL: "/EinsatzService/pflegedokumentation/klient/{id}" Add a HTML table to the view with the following KlientVersicherung columns: - column: GueltigBis - column: IstPrimaer - column: Versicherungsnummer - column: Versicherungsart - column: Klient - column: GueltigVon - column: Versicherung The table should have the title "KlientVersicherungs" und the data must be loaded from the server with the following relative URL: "/RechtsformService/klientversicherung/klient/{id}" Add a HTML table to the view with the following Medikationsplan columns: - column: VerordnenderArzt - column: ErstelltAm - column: Klient - column: ErstelltVonMitarbeiter - column: AktualisiertAm The table should have the title "Medikationsplans" und the data must be loaded from the server with the following relative URL: "/PflegedienstService/medikationsplan/klient/{id}" Add a HTML table to the view with the following Rechnung columns: - column: Rechnungsdatum - column: AbrechnungszeitraumBis - column: Rechnungsnummer - column: AbrechnungszeitraumVon - column: Gesamtbetrag - column: Pflegedienst - column: Klient - column: Versicherung - column: Faelligkeitsdatum - column: Rechnungsstatus The table should have the title "Rechnungs" und the data must be loaded from the server with the following relative URL: "/VersicherungService/rechnung/klient/{id}" Add a HTML table to the view with the following Pflegevertrag columns: - column: Pflegedienst - column: Enddatum - column: Kuendigungsdatum - column: Kuendigungsgrund - column: Bemerkung - column: Klient - column: Status - column: Vertragstyp - column: Startdatum The table should have the title "Pflegevertrags" und the data must be loaded from the server with the following relative URL: "/PflegedienstService/pflegevertrag/klient/{id}" Add a HTML table to the view with the following Einsatz columns: - column: Einsatzstatus - column: GeplantEnde - column: TatsächlichEnde - column: TatsächlichStart - column: PflegedienstStandort - column: GeplantStart - column: VerantwortlicherMitarbeiter - column: Abbruchgrund - column: Klient The table should have the title "Einsatzs" und the data must be loaded from the server with the following relative URL: "/EinsatzService/einsatz/klient/{id}" Add a HTML table to the view with the following KlientKontaktperson columns: - column: Person - column: Klient - column: IstNotfallkontakt - column: Beziehung The table should have the title "KlientKontaktpersons" und the data must be loaded from the server with the following relative URL: "/MitarbeiterService/klientkontaktperson/klient/{id}" Add a HTML table to the view with the following Pflegeplan columns: - column: RisikoEinschaetzung - column: ErstelltAm - column: Klient - column: AktualisiertAm - column: ErstelltVonMitarbeiter - column: Planstatus - column: Zielbeschreibung The table should have the title "Pflegeplans" und the data must be loaded from the server with the following relative URL: "/LeistungskatalogEintragService/pflegeplan/klient/{id}" 2. The MedikationsplanView must contain the following fields: - name: AktualisiertAm type: DATE - name: ErstelltAm type: DATE - name: ErstelltVonMitarbeiter type: INT - name: Klient type: Klient - name: VerordnenderArzt type: STRING The data source for the [Klient] select control should be loaded from the relative URL: "/PflegedienstService/klient" (HTTP-GET) An existing Medikationsplan entity should be loaded from the relative URL: "/PflegedienstService/medikationsplan/{id}" (HTTP-GET) If a new Medikationsplan entity has been created, the new entity should be posted to the relative URL: "/PflegedienstService/medikationsplan" (HTTP-POST) If an existing Medikationsplan entity has been updated, the modified entity should be sent to the relative URL: "/PflegedienstService/medikationsplan/{id}" (HTTP-PUT) If an existing Medikationsplan entity has to be deleted, the following relative URL should be called: "/PflegedienstService/medikationsplan/{id}" (HTTP-DELETE) Add a HTML table to the view with the following MedikationsplanEintrag columns: - column: Startdatum - column: IstBeiBedarf - column: Medikationsplan - column: Einnahmeplan - column: Enddatum - column: Dosierungsbeschreibung - column: Medikamentenname The table should have the title "MedikationsplanEintrags" und the data must be loaded from the server with the following relative URL: "/AuditService/medikationsplaneintrag/medikationsplan/{id}" 3. The PflegedienstView must contain the following fields: - name: EMailAdresse type: STRING - name: Enddatum type: DATE - name: HauptstandortOrt type: INT - name: IstAktiv type: BOOL - name: IstGemeinnuetzig type: BOOL - name: IstKirchlich type: BOOL - name: IstZugelassenSgbV type: BOOL - name: IstZugelassenSgbXI type: BOOL - name: Kurzname type: STRING - name: OffiziellerName type: STRING - name: Pflegediensttyp type: STRING - name: Rechtsform type: Rechtsform - name: Startdatum type: DATE - name: Telefonnummer type: STRING - name: Traegerorganisation type: Traegerorganisation - name: WebseiteUrl type: STRING The data source for the [Traegerorganisation] select control should be loaded from the relative URL: "/RechtsformService/traegerorganisation" (HTTP-GET) The data source for the [Rechtsform] select control should be loaded from the relative URL: "/RechtsformService/rechtsform" (HTTP-GET) An existing Pflegedienst entity should be loaded from the relative URL: "/PflegedienstService/pflegedienst/{id}" (HTTP-GET) If a new Pflegedienst entity has been created, the new entity should be posted to the relative URL: "/PflegedienstService/pflegedienst" (HTTP-POST) If an existing Pflegedienst entity has been updated, the modified entity should be sent to the relative URL: "/PflegedienstService/pflegedienst/{id}" (HTTP-PUT) If an existing Pflegedienst entity has to be deleted, the following relative URL should be called: "/PflegedienstService/pflegedienst/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Klient columns: - column: Hauptdiagnose - column: Wohnort - column: Telefonnummer - column: Pflegegrad - column: EMailAdresse - column: Geschlecht - column: Geburtsdatum - column: IstVerstorben - column: Pflegedienst - column: Hauptstandort - column: Lebenssituation - column: Vorname - column: Nachname - column: Sterbedatum - column: Familienstand - column: GesetzlicherBetreuer The table should have the title "Klients" und the data must be loaded from the server with the following relative URL: "/PflegedienstService/klient/pflegedienst/{id}" Add a HTML table to the view with the following PflegedienstGesetz columns: - column: GueltigVon - column: Beziehung - column: Gesetz - column: Pflegedienst - column: GueltigBis The table should have the title "PflegedienstGesetzs" und the data must be loaded from the server with the following relative URL: "/GesetzService/pflegedienstgesetz/pflegedienst/{id}" Add a HTML table to the view with the following PflegedienstStandort columns: - column: EMailAdresse - column: IstHauptstandort - column: Standortname - column: Pflegedienst - column: Ort - column: IstAktiv - column: Telefonnummer The table should have the title "PflegedienstStandorts" und the data must be loaded from the server with the following relative URL: "/OrtService/pflegedienststandort/pflegedienst/{id}" Add a HTML table to the view with the following LeistungskatalogEintrag columns: - column: Pflegedienst - column: Code - column: StandarddauerMinuten - column: IstAktiv - column: Detailbeschreibung - column: ErfordertAerztlicheVerordnung - column: Kategorie - column: Kurzbeschreibung The table should have the title "LeistungskatalogEintrags" und the data must be loaded from the server with the following relative URL: "/LeistungskatalogEintragService/leistungskatalogeintrag/pflegedienst/{id}" Add a HTML table to the view with the following Audit columns: - column: Pflegedienst - column: Audittype - column: BerichtReferenz - column: ErgebnisZusammenfassung - column: Auditdatum - column: AuditorName The table should have the title "Audits" und the data must be loaded from the server with the following relative URL: "/AuditService/audit/pflegedienst/{id}" Add a HTML table to the view with the following Mitarbeiter columns: - column: Hauptstandort - column: Wochenstunden - column: Einstellungsdatum - column: Pflegedienst - column: Beschaeftigungsart - column: Person - column: IstPflegedienstleitung - column: IstLeitung - column: Austrittsdatum - column: IstAktiv The table should have the title "Mitarbeiters" und the data must be loaded from the server with the following relative URL: "/MitarbeiterService/mitarbeiter/pflegedienst/{id}" Add a HTML table to the view with the following Rechnung columns: - column: Rechnungsdatum - column: AbrechnungszeitraumBis - column: Rechnungsnummer - column: AbrechnungszeitraumVon - column: Gesamtbetrag - column: Pflegedienst - column: Klient - column: Versicherung - column: Faelligkeitsdatum - column: Rechnungsstatus The table should have the title "Rechnungs" und the data must be loaded from the server with the following relative URL: "/VersicherungService/rechnung/pflegedienst/{id}" 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/pflegedienst/{id}" Add a HTML table to the view with the following PflegedienstZulassung columns: - column: GueltigVon - column: Zulassungsnummer - column: Pflegedienst - column: Zulassungstyp - column: GueltigBis - column: Bemerkung - column: ZustaendigeBehoerde The table should have the title "PflegedienstZulassungs" und the data must be loaded from the server with the following relative URL: "/OrtService/pflegedienstzulassung/pflegedienst/{id}" Add a HTML table to the view with the following Pflegevertrag columns: - column: Pflegedienst - column: Enddatum - column: Kuendigungsdatum - column: Kuendigungsgrund - column: Bemerkung - column: Klient - column: Status - column: Vertragstyp - column: Startdatum The table should have the title "Pflegevertrags" und the data must be loaded from the server with the following relative URL: "/PflegedienstService/pflegevertrag/pflegedienst/{id}" Add a HTML table to the view with the following Einsatz columns: - column: Einsatzstatus - column: GeplantEnde - column: TatsächlichEnde - column: TatsächlichStart - column: PflegedienstStandort - column: GeplantStart - column: VerantwortlicherMitarbeiter - column: Abbruchgrund - column: Klient The table should have the title "Einsatzs" und the data must be loaded from the server with the following relative URL: "/EinsatzService/einsatz/pflegedienststandort/{id}" Add a HTML table to the view with the following RollenZuweisung columns: - column: Mitarbeiter - column: BisDatum - column: VonDatum - column: Rolle - column: PflegedienstStandort The table should have the title "RollenZuweisungs" und the data must be loaded from the server with the following relative URL: "/RolleService/rollenzuweisung/pflegedienststandort/{id}" 4. The PflegevertragView must contain the following fields: - name: Bemerkung type: STRING - name: Enddatum type: DATE - name: Klient type: Klient - name: Kuendigungsdatum type: DATE - name: Kuendigungsgrund type: STRING - name: Pflegedienst type: Pflegedienst - name: Startdatum type: DATE - name: Status type: STRING - name: Vertragstyp type: STRING The data source for the [Pflegedienst] select control should be loaded from the relative URL: "/PflegedienstService/pflegedienst" (HTTP-GET) The data source for the [Klient] select control should be loaded from the relative URL: "/PflegedienstService/klient" (HTTP-GET) An existing Pflegevertrag entity should be loaded from the relative URL: "/PflegedienstService/pflegevertrag/{id}" (HTTP-GET) If a new Pflegevertrag entity has been created, the new entity should be posted to the relative URL: "/PflegedienstService/pflegevertrag" (HTTP-POST) If an existing Pflegevertrag entity has been updated, the modified entity should be sent to the relative URL: "/PflegedienstService/pflegevertrag/{id}" (HTTP-PUT) If an existing Pflegevertrag entity has to be deleted, the following relative URL should be called: "/PflegedienstService/pflegevertrag/{id}" (HTTP-DELETE) 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/pflegevertrag/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum