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 }