AddCustomer

This commit is contained in:
2024-11-12 11:06:18 +01:00
parent 6849fc0d86
commit 5274fdb0c4
8 changed files with 227 additions and 1 deletions

222
gui/AddCustomer.qml Normal file
View File

@@ -0,0 +1,222 @@
import QtQuick
import QtQuick.Layouts
import QtQuick.Controls
RowLayout
{
ColumnLayout
{
RowLayout
{
Label
{
text: "Firmenname"
Layout.alignment: Qt.AlignRight
}
TextField
{
}
}
RowLayout
{
Label
{
text: "Street"
}
TextField
{
}
}
RowLayout
{
Label
{
text: "PLZ"
}
ComboBox
{
}
}
RowLayout
{
Label
{
text: "Ort"
}
TextField
{
}
}
RowLayout
{
Label
{
text: "Telefon"
}
TextField
{
}
}
RowLayout
{
Label
{
text: "E-Mail"
}
TextField
{
}
}
RowLayout
{
Label
{
text: "Homepage"
}
TextField
{
}
}
RowLayout
{
Label
{
text: "Geschäftsführer"
}
TextField
{
}
}
RowLayout
{
Label
{
text: "USt-IdNr"
}
TextField
{
}
}
}
ColumnLayout
{
RowLayout
{
Label
{
text: "Firmenname"
Layout.alignment: Qt.AlignRight
}
TextField
{
}
}
RowLayout
{
Label
{
text: "Street"
}
TextField
{
}
}
RowLayout
{
Label
{
text: "PLZ"
}
ComboBox
{
}
}
RowLayout
{
Label
{
text: "Ort"
}
TextField
{
}
}
RowLayout
{
Label
{
text: "Telefon"
}
TextField
{
}
}
RowLayout
{
Label
{
text: "E-Mail"
}
TextField
{
}
}
RowLayout
{
Label
{
text: "Homepage"
}
TextField
{
}
}
RowLayout
{
Label
{
text: "Geschäftsführer"
}
TextField
{
}
}
RowLayout
{
Label
{
text: "USt-IdNr"
}
TextField
{
}
}
}
Item
{
id: spacer
Layout.fillHeight: true
}
}