PDF-Ordnerstruktur auf 'new', 'ref' und 'diff' umgestellt

Die PDF-Generierung verwendet nun die Ordner 'new', 'ref' und 'diff'
anstelle von 'output', 'valide' und 'diff'. Dies ermöglicht die
Integration mit MainWindow._load_images(), die PDFs in den Ordnern
'new', 'ref' und 'diff' sucht.

Änderungen:
- output_dir → new_dir (für neu generierte PDFs)
- valide_dir → ref_dir (für Referenz-PDFs)
- Alle Variablen und Log-Meldungen entsprechend angepasst
- Unused import entfernt (typing.Optional)

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
2025-12-12 21:38:24 +01:00
parent ee6ded95ab
commit c699c53a14
2 changed files with 30 additions and 32 deletions
+1 -2
View File
@@ -5,7 +5,6 @@ import polars as pl
import shutil
import hashlib
import logging
from concurrent.futures import ThreadPoolExecutor
from typing import List
from PySide6.QtCore import Qt, QSize, QThread, Signal
@@ -2538,7 +2537,7 @@ class MainWindow(QMainWindow):
QMessageBox.information(
self,
"Bereits zugeordnet",
f"Die XML-Datei mit gleichem Inhalt ist bereits in allen ausgewählten XSL-Knoten vorhanden."
"Die XML-Datei mit gleichem Inhalt ist bereits in allen ausgewählten XSL-Knoten vorhanden."
)
except Exception as e: