Bugfixes and adjustments

This commit is contained in:
Daniel Schick 2025-09-04 07:41:47 +02:00
parent c1e450c18b
commit 92998c2add
3 changed files with 10 additions and 4 deletions

View File

@ -871,7 +871,7 @@ namespace ENI2.DetailViewControls
break;
case NotificationClass.INFO:
if (Core.PoC == "DEHAM") addToSend = false;
else addToSend = ((message.ViolationCount ?? 0) > 0);
else addToSend = !((message.ViolationCount ?? 0) > 0);
break;
default:
if((message.ViolationCount ?? 0) > 0) addToSend = false;

View File

@ -217,7 +217,6 @@ namespace bsmd.database
}
else
{
if(this.MessageCore.PoC != "DEHAM")
errors.Add(RuleEngine.CreateError(ValidationCode.PORTAREA, "PortArea", this.PortArea ?? "", "INFO", "", this.Tablename));
}

View File

@ -146,6 +146,13 @@ namespace bsmd.database
};
this.WasteReceived.Add(foundWasteReceived);
}
else
{
if (!foundWasteReceived.AmountWasteReceived_MTQ.HasValue)
{
foundWasteReceived.AmountWasteReceived_MTQ = 0;
}
}
if (foundWasteReceived.WasteDescription.IsNullOrEmpty())
{