Add Applicant form changed

This commit is contained in:
2025-02-03 08:41:07 +01:00
parent 74b00c0b94
commit 0923365cbd
6 changed files with 55 additions and 39 deletions

View File

@@ -33,7 +33,7 @@ GridLayout
TextField
{
property string name: "socialno"
id: socialnumber
id: socialno
Layout.fillWidth: true
}
@@ -99,8 +99,8 @@ GridLayout
}
TextField
{
property string name: "passno"
id: passno
property string name: "idnumber"
id: idnumber
Layout.fillWidth: true
}
@@ -111,8 +111,8 @@ GridLayout
}
TextField
{
property string name: "passduration"
id: passduration
property string name: "idexpiry"
id: idexpiry
Layout.fillWidth: true
}
Label
@@ -122,8 +122,8 @@ GridLayout
}
TextField
{
property string name: "exhibitionlocation"
id: exhibitionlocation
property string name: "idauthority"
id: idauthority
Layout.fillWidth: true
}
Label
@@ -134,8 +134,8 @@ GridLayout
}
TextField
{
property string name: "exhibitdate"
id: exhibitdate
property string name: "idissued"
id: idissued
Layout.fillWidth: true
}
CheckBox
@@ -146,61 +146,63 @@ GridLayout
text: qsTr("Arbeitserlaubnis <font color='red'><b>?</b></font>")
visible: nation.currentText === "Deutschland"? false:true
}
Item
CheckBox
{
Layout.fillWidth: true
property string name: "residencetype"
id: residencetype
text: qsTr("Aufenthaltstitel")
visible: nation.currentText === "Deutschland"? false:true
}
Label
{
text: qsTr("Aufenthaltstitel Nr.")
visible: nation.currentText === "Deutschland"? false:true
visible: residencetype.checked
Layout.alignment: Qt.AlignRight
}
TextField
{
property string name: "residenceno"
id: residenceno
visible: nation.currentText === "Deutschland"? false:true
visible: residencetype.checked
Layout.fillWidth: true
}
Label
{
text: qsTr("Ausgestellt von")
visible: nation.currentText === "Deutschland"? false:true
visible: residencetype.checked
Layout.alignment: Qt.AlignRight
}
TextField
{
property string name: "residenceissuedloc"
id: residenceissuedloc
visible: nation.currentText === "Deutschland"? false:true
property string name: "residenceauthority"
id: residenceauthority
visible: residencetype.checked
Layout.fillWidth: true
}
Label
{
text: qsTr("Ausgestellt am")
visible: nation.currentText === "Deutschland"? false:true
visible: residencetype.checked
Layout.alignment: Qt.AlignRight
}
TextField
{
property string name: "residenceissued"
id: residenceissued
visible: nation.currentText === "Deutschland"? false:true
visible: residencetype.checked
Layout.fillWidth: true
}
Label
{
text: qsTr("Gültig bis")
visible: nation.currentText === "Deutschland"? false:true
visible: residencetype.checked
Layout.alignment: Qt.AlignRight
}
TextField
{
property string name: "residenceexpire"
id: residenceexpire
visible: nation.currentText === "Deutschland"? false:true
property string name: "residenceexpiry"
id: residenceexpiry
visible: residencetype.checked
Layout.fillWidth: true
}