Added importCountry

This commit is contained in:
2025-01-22 16:52:49 +01:00
parent 180f8e5ae9
commit c2edfab9a2
14 changed files with 17805 additions and 482 deletions

View File

@@ -4,6 +4,7 @@ import QtQuick.Layouts
GridLayout
{
id: bankAccount
columns: 2
Label
{
@@ -14,6 +15,8 @@ GridLayout
{
id: iban
Layout.fillWidth: true
placeholderText: "Pflichtfeld"
placeholderTextColor: "red"
}
Label
{
@@ -25,5 +28,13 @@ GridLayout
{
id: bankname
Layout.fillWidth: true
placeholderText: "Pflichtfeld"
placeholderTextColor: "red"
}
function checkBankField()
{
return (iban.text.trim() && bankname.text.trim())
}
}