residence informationen added

This commit is contained in:
2025-01-30 11:33:03 +01:00
parent 716915f333
commit 74b00c0b94

View File

@@ -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
}