64 lines
1.1 KiB
QML
64 lines
1.1 KiB
QML
import QtQuick
|
|
import QtQuick.Controls
|
|
import QtQuick.Layouts
|
|
|
|
GridLayout
|
|
{
|
|
id: applicantVarious
|
|
columns: 2
|
|
|
|
Label
|
|
{
|
|
Layout.preferredWidth: bankAccount.longest.width
|
|
text: qsTr("Grad der Behinderung")
|
|
horizontalAlignment: Text.AlignRight
|
|
}
|
|
|
|
TextField
|
|
{
|
|
property string name: "behinderung"
|
|
id: behinderung
|
|
placeholderText: "0,0"
|
|
}
|
|
|
|
Label
|
|
{
|
|
text: qsTr("Disponent")
|
|
Layout.alignment: Qt.AlignRight
|
|
}
|
|
|
|
TextField
|
|
{
|
|
property string name: "disponent"
|
|
id: disponent
|
|
Layout.fillWidth: true
|
|
}
|
|
|
|
Label
|
|
{
|
|
text: qsTr("Kostenstelle")
|
|
Layout.alignment: Qt.AlignRight
|
|
}
|
|
|
|
TextField
|
|
{
|
|
property string name: "kostenstelle"
|
|
id: kostenstelle
|
|
Layout.fillWidth: true
|
|
}
|
|
|
|
Label
|
|
{
|
|
text: qsTr("Fremdlohn-Nr.")
|
|
Layout.alignment: Qt.AlignRight
|
|
}
|
|
|
|
TextField
|
|
{
|
|
property string name: "fremdlohn"
|
|
id: fremdLohnNummer
|
|
Layout.fillWidth: true
|
|
}
|
|
}
|
|
|