Files
pyqcrm/gui/AddCustomer.qml
2024-11-12 11:06:18 +01:00

223 lines
3.2 KiB
QML

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
}
}