Change UstId to UstIdNr

This commit is contained in:
2023-08-17 16:45:31 +02:00
parent 3ab2b8a8dc
commit 58235e3b02
8 changed files with 15 additions and 15 deletions

View File

@ -346,7 +346,7 @@ namespace Elwig.Windows {
m.Iban = (IbanInput.Text == "") ? null : IbanInput.Text.Replace(" ", "");
m.Bic = (BicInput.Text == "") ? null : BicInput.Text;
m.UstId = (UstIdInput.Text == "") ? null : UstIdInput.Text;
m.UstIdNr = (UstIdNrInput.Text == "") ? null : UstIdNrInput.Text;
m.LfbisNr = (LfbisNrInput.Text == "") ? null : LfbisNrInput.Text;
m.IsBuchführend = BuchführendInput.IsChecked ?? false;
@ -476,7 +476,7 @@ namespace Elwig.Windows {
IbanInput.Text = m.Iban;
BicInput.Text = m.Bic;
UstIdInput.Text = m.UstId;
UstIdNrInput.Text = m.UstIdNr;
LfbisNrInput.Text = m.LfbisNr;
BuchführendInput.IsChecked = m.IsBuchführend;