Some GUI modification and DB documentation template

This commit is contained in:
2025-01-20 08:31:25 +01:00
parent 705bffc8d3
commit fc197246a6
13 changed files with 731 additions and 473 deletions

27
Gui/ObjectDetails.qml Normal file
View File

@@ -0,0 +1,27 @@
import QtQuick
import QtQuick.Controls
import QtQuick.Layouts
Item
{
property int selectedObject: -1
id: obDet
ColumnLayout
{
Label
{
text: qsTr("Ausgewählter Objekt " + selectedObject)
}
Button
{
text: qsTr("Objekts zeigen")
onClicked: customersStack.pop()
}
}
Component.onCompleted:
{
business_model.onRowClicked(selectedObject)
}
}