Div. Bugfixes

This commit is contained in:
2026-05-04 00:01:23 +02:00
parent eeed2c24e2
commit d775848a79
2 changed files with 13 additions and 5 deletions

View File

@@ -931,15 +931,18 @@ namespace BeWo.Service.Plugins
return true;
}
foreach (var v2o in sr.ValueList)
if (sr.ValueList != null)
{
if (v2o.Entry.Type == ValueListEntryType.SupportConceptGoalType || v2o.Entry.Type == ValueListEntryType.SupportConceptGoalCategoryType || v2o.Entry.Type == ValueListEntryType.SupportConceptIndividualGoalType || v2o.Entry.Type == ValueListEntryType.SupportConceptIndividualGoalCategoryType)
foreach (var v2o in sr.ValueList)
{
foreach (var oid in goalOids)
if (v2o.Entry.Type == ValueListEntryType.SupportConceptGoalType || v2o.Entry.Type == ValueListEntryType.SupportConceptGoalCategoryType || v2o.Entry.Type == ValueListEntryType.SupportConceptIndividualGoalType || v2o.Entry.Type == ValueListEntryType.SupportConceptIndividualGoalCategoryType)
{
if (v2o.Entry.Oid.Value == oid)
foreach (var oid in goalOids)
{
return true;
if (v2o.Entry.Oid.Value == oid)
{
return true;
}
}
}
}

View File

@@ -145,6 +145,11 @@ namespace BeWo.Service.Plugins
AddOrReplaceTranslation(dict, "Module_DisplayName_Wohnhilfe", "Wohnhilfe");
//Hilfe Urls
//AddOrReplaceTranslation(dict, "EndgueltigLoeschenHilfeUrl", "https://hilfe.bewoplaner.de/");
return dict;
}