Enhance CSV import functionality with improved error messaging and logging

- Updated error message in CSVImportPanel to include a period for better readability.
- Added console logs in the CSV import API route to track the import process and precheck status.
- Removed redundant validation for 'Beguenstigter/Zahlungspflichtiger' to streamline error handling during CSV import.
This commit is contained in:
sebseb7
2025-08-21 04:46:30 +02:00
parent 8e8d93e4a6
commit bd7c6dddbf
2 changed files with 5 additions and 4 deletions

View File

@@ -457,7 +457,7 @@ class CSVImportPanel extends Component {
)}
{importResult.errors > 0 && (
<Typography variant="body1" color="warning.main">
<strong>Fehler:</strong> {importResult.errors} Zeilen konnten nicht verarbeitet werden
<strong>Fehler:</strong> {importResult.errors} Zeilen konnten nicht verarbeitet werden.
</Typography>
)}
{importResult.message && (