From 5ab1c8d82a6fd79349855faca0ae094d9ed744c7a3fef8c3bc2319c12b4a0d33 Mon Sep 17 00:00:00 2001 From: Marco Gatzen Date: Thu, 14 Nov 2024 08:53:33 +0100 Subject: [PATCH] checkboxes --- gui/AddCustomer.qml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/gui/AddCustomer.qml b/gui/AddCustomer.qml index 4b4e4b6..0fb44ed 100644 --- a/gui/AddCustomer.qml +++ b/gui/AddCustomer.qml @@ -257,6 +257,28 @@ ColumnLayout Layout.fillWidth: true editable: true } + Label + { + text: qsTr("Rechnung") + Layout.alignment: Qt.AlignRight + } + ComboBox + { + id: invoice + Layout.fillWidth: true + editable: true + } + Label + { + text: qsTr("Mahnung") + Layout.alignment: Qt.AlignRight + } + ComboBox + { + id: due + Layout.fillWidth: true + editable: true + } } } RowLayout