Compare commits

...

2 Commits

Author SHA256 Message Date
76c4be7a7a Merge main 2025-03-24 11:28:57 +01:00
Yuri Becker
480dd673c4 Fix Mitarbeiter Table 2025-03-24 10:53:46 +01:00
5 changed files with 10 additions and 15 deletions

View File

@@ -7,7 +7,6 @@ import Qt.labs.qmlmodels
Item {
anchors.fill: parent
property var availableFilters: ["Name", "Adresse", "PLZ", "Ort"]
id: test
StackView
{

View File

@@ -4,12 +4,16 @@ import QtQuick.Controls
import Qt.labs.qmlmodels
ColumnLayout {
function viewCriterion(criterion)
{
business_model.viewCriterion(criterion.text);
}
anchors.fill: parent
spacing: Dimensions.l
Component.onCompleted: customersStack.pop()

View File

@@ -3,17 +3,15 @@ import QtQuick.Layouts
import QtQuick.Controls
import Qt.labs.qmlmodels
Item {
anchors.fill: parent
Item
{
StackView
{
StackView {
id: employeesStack
anchors.fill: parent
initialItem: "EmployeesTable.qml"
anchors.topMargin: Dimensions.m
}
}

View File

@@ -50,12 +50,7 @@ ColumnLayout
text: qsTr("Kunde")
selected: false
}
ListElement
{
name: "Lieferant"
text: qsTr("Lieferant")
selected: false
}
ListElement
{
name: "Erledigt"

View File

@@ -146,8 +146,7 @@ GridLayout
}
TextField
{
id: gesamtnetto
{id: gesamtnetto
Layout.fillWidth: true
Layout.columnSpan: 3
}