From 74b00c0b94541895b62997ffb8d05c4cb46fef0b8a036b13f02a23cf7509a5ac Mon Sep 17 00:00:00 2001 From: Daniel Stoppek Date: Thu, 30 Jan 2025 11:33:03 +0100 Subject: [PATCH] residence informationen added --- Gui/ApplicantNationalInsurance.qml | 45 ++++++++++++++++++++++++++++-- 1 file changed, 42 insertions(+), 3 deletions(-) diff --git a/Gui/ApplicantNationalInsurance.qml b/Gui/ApplicantNationalInsurance.qml index 5554ced..79f6017 100644 --- a/Gui/ApplicantNationalInsurance.qml +++ b/Gui/ApplicantNationalInsurance.qml @@ -153,14 +153,53 @@ GridLayout } Label { - text: qsTr("Aufenthaltstitel gültig bis") + text: qsTr("Aufenthaltstitel Nr.") visible: nation.currentText === "Deutschland"? false:true Layout.alignment: Qt.AlignRight } TextField { - property string name: "aufenthalt" - id: aufenthalt + property string name: "residenceno" + id: residenceno + visible: nation.currentText === "Deutschland"? false:true + Layout.fillWidth: true + } + Label + { + text: qsTr("Ausgestellt von") + visible: nation.currentText === "Deutschland"? false:true + Layout.alignment: Qt.AlignRight + } + TextField + { + property string name: "residenceissuedloc" + id: residenceissuedloc + visible: nation.currentText === "Deutschland"? false:true + Layout.fillWidth: true + } + Label + { + text: qsTr("Ausgestellt am") + visible: nation.currentText === "Deutschland"? false:true + Layout.alignment: Qt.AlignRight + } + TextField + { + property string name: "residenceissued" + id: residenceissued + visible: nation.currentText === "Deutschland"? false:true + Layout.fillWidth: true + } + Label + { + text: qsTr("Gültig bis") + visible: nation.currentText === "Deutschland"? false:true + Layout.alignment: Qt.AlignRight + } + TextField + { + property string name: "residenceexpire" + id: residenceexpire visible: nation.currentText === "Deutschland"? false:true Layout.fillWidth: true }