AddCustomer
This commit is contained in:
222
gui/AddCustomer.qml
Normal file
222
gui/AddCustomer.qml
Normal 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
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user