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