diff --git a/BeWo/ViewModel/CustomerVM.cs b/BeWo/ViewModel/CustomerVM.cs index fb465b9e7..e9392d879 100644 --- a/BeWo/ViewModel/CustomerVM.cs +++ b/BeWo/ViewModel/CustomerVM.cs @@ -839,7 +839,9 @@ namespace BeWo.ViewModel _EnvironmentOrganisations.IsDirty || _AbsenceTimes.IsDirty || _VarFields.IsDirty || CostBearers.IsDirty || _IndividualAssessmentSheetCategories.IsDirty || _PlacementList.IsDirty || _MedVerordnungslisten.IsDirty || _EnvironmentPersonsWithFamily.IsDirty || _Arbeitszeiten.IsDirty || - _CustomerFalldatenVM.IsDirty || _CustomerWohnhilfeListVM.IsDirty; + _CustomerFalldatenVM.IsDirty + //|| _CustomerWohnhilfeListVM.IsDirty + ; } } public bool IsFemale diff --git a/BeWo/ViewModel/Wohnhilfe/CustomerWohnhilfeBereichSozialeKontakteVM.cs b/BeWo/ViewModel/Wohnhilfe/CustomerWohnhilfeBereichSozialeKontakteVM.cs index bdbc2edd4..dc04fad58 100644 --- a/BeWo/ViewModel/Wohnhilfe/CustomerWohnhilfeBereichSozialeKontakteVM.cs +++ b/BeWo/ViewModel/Wohnhilfe/CustomerWohnhilfeBereichSozialeKontakteVM.cs @@ -59,15 +59,15 @@ namespace BeWo.ViewModel.Wohnhilfe _CanEditBeginnKontakt = value; - if (!value) - { - BeginnKontaktFreundenBekannten = false; - BeginnKontaktMindKinder = false; - BeginnKontaktPartner = false; - BeginnKontaktSelbsthilfe = false; - BeginnKontaktSonstige = false; - BeginnKontaktVolljahrKinderElternVerwandten = false; - } + //if (!value) + //{ + // BeginnKontaktFreundenBekannten = false; + // BeginnKontaktMindKinder = false; + // BeginnKontaktPartner = false; + // BeginnKontaktSelbsthilfe = false; + // BeginnKontaktSonstige = false; + // BeginnKontaktVolljahrKinderElternVerwandten = false; + //} FirePropertyChanged(nameof(CanEditBeginnKontakt)); } @@ -83,15 +83,15 @@ namespace BeWo.ViewModel.Wohnhilfe _CanEditEndeKontakt = value; - if (!value) - { - EndeKontaktFreundenBekannten = false; - EndeKontaktMindKinder = false; - EndeKontaktPartner = false; - EndeKontaktSelbsthilfe = false; - EndeKontaktSonstige = false; - EndeKontaktVolljahrKinderElternVerwandten = false; - } + //if (!value) + //{ + // EndeKontaktFreundenBekannten = false; + // EndeKontaktMindKinder = false; + // EndeKontaktPartner = false; + // EndeKontaktSelbsthilfe = false; + // EndeKontaktSonstige = false; + // EndeKontaktVolljahrKinderElternVerwandten = false; + //} FirePropertyChanged(nameof(CanEditEndeKontakt)); }