This commit is contained in:
2024-12-12 13:34:06 +01:00
parent d650c055b2
commit 2e3fa702f1

View File

@@ -333,7 +333,7 @@ Public Class frmEintragTvNew
myAvisoTvNew = New cAvisoTvNew() With {
.StandortID = standortID,
.Standort = standort,
.Art = "",
.Prio = "",
.IsActive = True
}
@@ -718,7 +718,7 @@ Public Class frmEintragTvNew
chkFriday.Checked = aviso.IsFriday.GetValueOrDefault(False)
chkSaturday.Checked = aviso.IsSaturday.GetValueOrDefault(False)
chkSunday.Checked = aviso.IsSunday.GetValueOrDefault(False)
nudPrioritaet.Value = Convert.ToDecimal(aviso.Art)
nudPrioritaet.Value = Convert.ToDecimal(aviso.Prio)
chkIsActive.Checked = aviso.IsActive
grpWochentage.Enabled = chkIsRecurring.Checked
@@ -916,7 +916,7 @@ Public Class frmEintragTvNew
myAvisoTvNew.IsSunday = chkSunday.Checked
myAvisoTvNew.IsActive = chkIsActive.Checked
myAvisoTvNew.Art = Convert.ToInt32(nudPrioritaet.Value)
myAvisoTvNew.Prio = Convert.ToInt32(nudPrioritaet.Value)
If Neuanlage Then
myAvisoTvNew.Standort = cbxStandort.SelectedItem?.ToString()