Files
pyqcrm/Gui/ApplicantVarious.qml
2025-01-28 13:45:02 +01:00

59 lines
861 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"
}
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
}
}