Dokumentation: Aktualisierung der Version in der README
This commit is contained in:
61
README.md
61
README.md
@@ -51,61 +51,36 @@ Alle Rechte vorbehalten. © 2025 medisoftware
|
||||
|
||||
## API-Beispiele
|
||||
|
||||
Die Such-API unterstützt folgende Parameter:
|
||||
|
||||
### Spezifische Suche
|
||||
### Suche nach Name
|
||||
```bash
|
||||
# Nach Name suchen
|
||||
curl "http://localhost:5001/search?name=Schmidt"
|
||||
curl "http://localhost:5001/search?name=Mustermann"
|
||||
```
|
||||
|
||||
# Nach Ort suchen
|
||||
### Suche nach Ort
|
||||
```bash
|
||||
curl "http://localhost:5001/search?ort=Berlin"
|
||||
```
|
||||
|
||||
# Nach Kundennummer suchen
|
||||
### Suche nach Kundennummer
|
||||
```bash
|
||||
curl "http://localhost:5001/search?kundennummer=12345"
|
||||
```
|
||||
|
||||
# Nach Fachrichtung suchen
|
||||
curl "http://localhost:5001/search?fachrichtung=Allgemeinmedizin"
|
||||
### Suche nach Fachrichtung
|
||||
```bash
|
||||
curl "http://localhost:5001/search?fachrichtung=Zahnarzt"
|
||||
```
|
||||
|
||||
# Nach Telefonnummer suchen
|
||||
### Suche nach Telefon
|
||||
```bash
|
||||
curl "http://localhost:5001/search?telefon=030"
|
||||
|
||||
# Kombinierte Suche
|
||||
curl "http://localhost:5001/search?name=Schmidt&ort=Berlin&fachrichtung=Allgemeinmedizin"
|
||||
```
|
||||
|
||||
### Allgemeine Suche
|
||||
```bash
|
||||
# Suche in allen Feldern
|
||||
curl "http://localhost:5001/search?q=Schmidt"
|
||||
curl "http://localhost:5001/search?q=Suchbegriff"
|
||||
```
|
||||
|
||||
### Beispiel-Response
|
||||
```json
|
||||
[
|
||||
{
|
||||
"Vorname": "Max",
|
||||
"Nachname": "Mustermann",
|
||||
"Nummer": "12345",
|
||||
"Ort": "Berlin",
|
||||
"Fachrichtung": "Allgemeinmedizin",
|
||||
"Tel": "030123456",
|
||||
"Email": "max@example.com"
|
||||
}
|
||||
]
|
||||
```
|
||||
## Version
|
||||
|
||||
## Versionen
|
||||
|
||||
### v1.0.1
|
||||
- Telefonnummer-Suchfeld hinzugefügt
|
||||
- Reset-Icons für alle Suchfelder
|
||||
- Verbesserte Positionierung der UI-Elemente
|
||||
- Optimierte Suchlogik
|
||||
- CSV-Datei in data-Verzeichnis verschoben
|
||||
|
||||
### v1.0.0
|
||||
- Erste Version
|
||||
- Grundlegende Suchfunktionalität
|
||||
- Klickbare Links für Telefon, E-Mail und Adressen
|
||||
- Share-Funktion für Suchergebnisse
|
||||
Aktuelle Version: 1.0.5
|
Reference in New Issue
Block a user