Enhance MemberTransferService and MemberTransferDialog with detailed debug logging

Added extensive debug logging to the MemberTransferService to track member transfer details, including logging the first few members and bulk data structure. Updated the MemberTransferDialog to clear login credentials upon loading and closing, improving user experience and ensuring a clean state for configuration loading. These enhancements aim to facilitate troubleshooting and provide better visibility into the member transfer process.
This commit is contained in:
Torsten Schulz (local)
2025-11-06 08:13:43 +01:00
parent d0a8ef5ff2
commit cad76edaad
2 changed files with 80 additions and 0 deletions

View File

@@ -172,7 +172,17 @@ export default {
watch: {
modelValue(newVal) {
if (newVal) {
// WICHTIG: Felder sofort leeren, bevor Konfiguration geladen wird
this.loginCredentials = {
username: '',
password: '',
additionalField1: '',
additionalField2: ''
};
this.loadSavedConfig();
} else {
// Beim Schließen auch leeren
this.resetForm();
}
}
},