59 lines
891 B
QML
59 lines
891 B
QML
import QtQuick
|
|
import QtQuick.Controls
|
|
import QtQuick.Layouts
|
|
|
|
GridLayout
|
|
{
|
|
id: applicantVarious
|
|
columns: 2
|
|
Label
|
|
{
|
|
text: qsTr("Grad der Behinderung")
|
|
}
|
|
|
|
TextField
|
|
{
|
|
property string name: "behinderung"
|
|
id: behinderung
|
|
placeholderText: "0,0"
|
|
Layout.fillWidth: true
|
|
}
|
|
|
|
Label
|
|
{
|
|
text: qsTr("Disponent")
|
|
}
|
|
|
|
TextField
|
|
{
|
|
property string name: "disponent"
|
|
id: disponent
|
|
Layout.fillWidth: true
|
|
}
|
|
|
|
Label
|
|
{
|
|
text: qsTr("Kostenstelle")
|
|
}
|
|
|
|
TextField
|
|
{
|
|
property string name: "kostenstelle"
|
|
id: kostenstelle
|
|
Layout.fillWidth: true
|
|
}
|
|
|
|
Label
|
|
{
|
|
text: qsTr("Fremdlohn-Nr.")
|
|
}
|
|
|
|
TextField
|
|
{
|
|
property string name: "fremdlohn"
|
|
id: fremdLohnNummer
|
|
Layout.fillWidth: true
|
|
}
|
|
}
|
|
|