Compare commits
2 Commits
c1e450c18b
...
f58e9e7079
| Author | SHA1 | Date | |
|---|---|---|---|
| f58e9e7079 | |||
| 92998c2add |
@ -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;
|
||||
|
||||
@ -36,8 +36,8 @@
|
||||
<MinimumRequiredVersion>5.4.0.0</MinimumRequiredVersion>
|
||||
<CreateWebPageOnPublish>true</CreateWebPageOnPublish>
|
||||
<WebPage>publish.html</WebPage>
|
||||
<ApplicationRevision>0</ApplicationRevision>
|
||||
<ApplicationVersion>7.2.11.0</ApplicationVersion>
|
||||
<ApplicationRevision>1</ApplicationRevision>
|
||||
<ApplicationVersion>7.2.11.1</ApplicationVersion>
|
||||
<UseApplicationTrust>false</UseApplicationTrust>
|
||||
<CreateDesktopShortcut>true</CreateDesktopShortcut>
|
||||
<PublishWizardCompleted>true</PublishWizardCompleted>
|
||||
|
||||
@ -216,9 +216,8 @@ namespace bsmd.database
|
||||
errors.Add(RuleEngine.CreateError(ValidationCode.IMPLAUSIBLE, "PortArea", this.PortArea, "INFO", "", this.Tablename));
|
||||
}
|
||||
else
|
||||
{
|
||||
if(this.MessageCore.PoC != "DEHAM")
|
||||
errors.Add(RuleEngine.CreateError(ValidationCode.PORTAREA, "PortArea", this.PortArea ?? "", "INFO", "", this.Tablename));
|
||||
{
|
||||
errors.Add(RuleEngine.CreateError(ValidationCode.PORTAREA, "PortArea", this.PortArea ?? "", "INFO", "", this.Tablename));
|
||||
}
|
||||
|
||||
if(DeplacementSummerDraught_TNE.HasValue)
|
||||
|
||||
@ -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())
|
||||
{
|
||||
|
||||
Loading…
Reference in New Issue
Block a user