Created
February 11, 2022 15:46
-
-
Save corny/0c5aad6988179787d709e6864a562426 to your computer and use it in GitHub Desktop.
Noasys XML Import
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0"?> | |
<customers> | |
<customer> | |
<!-- Kundennummer --> | |
<number>1234</number> | |
<!-- Debitorennummer, wenn abweichend von Kundennummer --> | |
<debtorNumber>10512</debtorNumber> | |
<!-- m=Herr | f=Frau --> | |
<gender>m</gender> | |
<title>Dr.</title> | |
<firstname>Max</firstname> | |
<lastname>Mustermann</lastname> | |
<street>Haupstraße 15</street> | |
<postalCode>51231</postalCode> | |
<city>Entenhausen</city> | |
<birthdate>1960-01-05</birthdate> | |
<email>[email protected]</email> | |
<createdAt>2021-01-29T12:50:23.832+01:00</createdAt> | |
<!-- Mehrere Rufnummern sind durch Zeilenumbruch zu trennen --> | |
<callerIds>0421/61231223</callerIds> | |
<!-- Versichertennummer --> | |
<insuranceNumber>X123456789</insuranceNumber> | |
<!-- Pflegestufe --> | |
<careDegree>1</careDegree> | |
<insurance> | |
<ik>186710503</ik> | |
<createdAt>2021-01-29T12:50:23.832+01:00</createdAt> | |
<!-- Weitere Daten sind nur erforderlich, wenn die IK-Nummer fehlt --> | |
<organization>AOK Baden-Württemberg Pflegeversicherung</organization> | |
<street>Haupstraße 15</street> | |
<postalCode>51231</postalCode> | |
<city>Entenhausen</city> | |
<email>[email protected]</email> | |
</insurance> | |
<!-- SEPA-Mandat des Kunden --> | |
<bankAccount> | |
<owner>Max Mustermann</owner> | |
<iban>DE02300209000106531065</iban> | |
<mandateSignedOn>2018-02-21</mandateSignedOn> | |
<mandateRef>1234-01</mandateRef> | |
</bankAccount> | |
<!-- Kostenübernahmeantrag (optional) --> | |
<costApplication> | |
<!-- Status kann sein: applied | declined | approved | terminated --> | |
<status>approved</status> | |
<appliedOn>2021-02-15</appliedOn> | |
<effectiveOn>2021-02-01</effectiveOn> | |
<approvedOn>2021-02-25</approvedOn> | |
<amount>23.0</amount> | |
<!-- Genehmigungskennzeichen --> | |
<approvalNumber>10851/2021</approvalNumber> | |
</costApplication> | |
<contract> | |
<!-- Installationsdatum --> | |
<installedOn>2018-02-21</installedOn> | |
<!-- Pflegehilfsmittelnummer --> | |
<gkvAidID>5240011093</gkvAidID> | |
<notes>Notizen</notes> | |
<!-- Es gibt eine Hauptleistung. Wenn es mehrere Hauptleistungen gibt, dürfen sie sich zeitlich nicht überlappen. --> | |
<component> | |
<article>Hausnotruf Komfort</article> | |
<kind>main_monthly</kind> | |
<totalAmount>49.0</totalAmount> | |
<subsidyAmount>25.5</subsidyAmount> | |
<startsOn>2018-02-21</startsOn> | |
<endsOn></endsOn> | |
</component> | |
<!-- Es kann mehrere Zusatzleistungen geben, die monatlich berechnet werden. --> | |
<component> | |
<article>Schlüsselhinterlegung</article> | |
<kind>addon_monthly</kind> | |
<totalAmount>10.0</totalAmount> | |
<subsidyAmount>0</subsidyAmount> | |
<startsOn>2021-02-21</startsOn> | |
<endsOn></endsOn> | |
</component> | |
</contract> | |
</customer> | |
</customers> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment