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