Fehlerkorrekturen nach Meldung von Christin (PDF Report), einen habe ich selbst noch gefunden, Versionsbump 6.9.2, Setup erstellt

This commit is contained in:
Daniel Schick 2021-12-28 07:45:22 +01:00
parent 5a3f430c4f
commit 0440f46b84
6 changed files with 6 additions and 7 deletions

View File

@ -37,7 +37,7 @@
<CreateWebPageOnPublish>true</CreateWebPageOnPublish>
<WebPage>publish.html</WebPage>
<ApplicationRevision>0</ApplicationRevision>
<ApplicationVersion>6.9.1.0</ApplicationVersion>
<ApplicationVersion>6.9.2.0</ApplicationVersion>
<UseApplicationTrust>false</UseApplicationTrust>
<CreateDesktopShortcut>true</CreateDesktopShortcut>
<PublishWizardCompleted>true</PublishWizardCompleted>

View File

@ -888,7 +888,7 @@ namespace ENI2.Report
private static void SetPoCLast30Days(PortOfCallLast30Days portOfCallLast30Days, Row row)
{
row.Cells[0].AddParagraph(portOfCallLast30Days.Identifier);
row.Cells[0].AddParagraph(portOfCallLast30Days.Identifier ?? "");
row.Cells[1].AddParagraph(LocodeDB.LocationNameFromLocode(portOfCallLast30Days.PortOfCallLast30DaysLocode) ?? "");
row.Cells[2].AddParagraph(portOfCallLast30Days.PortOfCallLast30DaysDateOfDeparture.HasValue ?

View File

@ -35,6 +35,7 @@ namespace ENI2.Report
foreach (Message aMessage in messages)
{
if (aMessage.Elements.Count == 0) continue; // don't output empty list classes
if (notificationClasses.Contains(aMessage.MessageNotificationClass))
{
reportMessages.Add(aMessage);

View File

@ -738,9 +738,7 @@ namespace bsmd.database
}
else
{
if (this.MessageNotificationClass == NotificationClass.VISIT) return "VISIT";
if (this.MessageNotificationClass == NotificationClass.TRANSIT) return "TRANSIT";
return "unknown";
return MessageNotificationClassDisplay;
}
}
}

View File

@ -2,6 +2,6 @@
[assembly: AssemblyCompany("schick Informatik")]
[assembly: AssemblyProduct("BSMD NSW interface")]
[assembly: AssemblyInformationalVersion("6.9.0")]
[assembly: AssemblyInformationalVersion("6.9.2")]
[assembly: AssemblyCopyright("Copyright © 2014-2021 schick Informatik")]
[assembly: AssemblyTrademark("")]

View File

@ -1,4 +1,4 @@
using System.Reflection;
[assembly: AssemblyVersion("6.9.0.*")]
[assembly: AssemblyVersion("6.9.2.*")]