Hotfix 6.9.12, zwei Fehler korrigiert
This commit is contained in:
parent
f22c3d2f80
commit
0fd4b9919a
@ -29,7 +29,7 @@
|
||||
<value>http://192.168.2.24/LockingService/LockingService.svc</value>
|
||||
</setting>
|
||||
<setting name="ConnectionString" serializeAs="String">
|
||||
<value>Initial Catalog=nsw;Data Source=192.168.2.24\SQLEXPRESS;Uid=dfuser;pwd=dfpasswd;Persist Security Info=False;Connection Reset=false</value>
|
||||
<value>Initial Catalog=nswtest;Data Source=192.168.2.24\SQLEXPRESS;Uid=dfuser;pwd=dfpasswd;Persist Security Info=False;Connection Reset=false</value>
|
||||
</setting>
|
||||
</ENI2.Properties.Settings>
|
||||
</applicationSettings>
|
||||
|
||||
@ -18,7 +18,7 @@
|
||||
<NuGetPackageImportStamp>
|
||||
</NuGetPackageImportStamp>
|
||||
<TargetFrameworkProfile />
|
||||
<PublishUrl>eni2.publish\</PublishUrl>
|
||||
<PublishUrl>eni_test\</PublishUrl>
|
||||
<Install>true</Install>
|
||||
<InstallFrom>Web</InstallFrom>
|
||||
<UpdateEnabled>true</UpdateEnabled>
|
||||
@ -28,16 +28,16 @@
|
||||
<UpdatePeriodically>false</UpdatePeriodically>
|
||||
<UpdateRequired>false</UpdateRequired>
|
||||
<MapFileExtensions>true</MapFileExtensions>
|
||||
<InstallUrl>http://192.168.2.24/eni2.publish/</InstallUrl>
|
||||
<InstallUrl>http://192.168.2.24/eni_test/</InstallUrl>
|
||||
<SupportUrl>http://www.textbausteine.net/</SupportUrl>
|
||||
<ProductName>ENI</ProductName>
|
||||
<ProductName>ENI Testversion</ProductName>
|
||||
<PublisherName>Informatikbüro Daniel Schick</PublisherName>
|
||||
<SuiteName>NSW</SuiteName>
|
||||
<MinimumRequiredVersion>5.4.0.0</MinimumRequiredVersion>
|
||||
<CreateWebPageOnPublish>true</CreateWebPageOnPublish>
|
||||
<WebPage>publish.html</WebPage>
|
||||
<ApplicationRevision>0</ApplicationRevision>
|
||||
<ApplicationVersion>6.9.11.0</ApplicationVersion>
|
||||
<ApplicationVersion>6.9.12.0</ApplicationVersion>
|
||||
<UseApplicationTrust>false</UseApplicationTrust>
|
||||
<CreateDesktopShortcut>true</CreateDesktopShortcut>
|
||||
<PublishWizardCompleted>true</PublishWizardCompleted>
|
||||
@ -86,7 +86,7 @@
|
||||
<ApplicationManifest>Properties\app.manifest</ApplicationManifest>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup>
|
||||
<ManifestCertificateThumbprint>9B5725EAD90F2E06094631407417EB2554E88941</ManifestCertificateThumbprint>
|
||||
<ManifestCertificateThumbprint>94D98790E3B6C4CC9F4B57C8FD305E3225894DF8</ManifestCertificateThumbprint>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup>
|
||||
<SignManifests>true</SignManifests>
|
||||
|
||||
@ -16,7 +16,7 @@ namespace ENI2.Excel
|
||||
|
||||
internal enum CountryMode { NONE, DE, DK };
|
||||
|
||||
protected CountryMode _countryMode = CountryMode.NONE;
|
||||
protected CountryMode _countryMode = CountryMode.DE;
|
||||
|
||||
protected Workbooks _excelWorkbooks;
|
||||
protected Workbook _workBook;
|
||||
|
||||
@ -49,9 +49,24 @@ namespace ENI2.Report
|
||||
|
||||
try
|
||||
{
|
||||
string etaDisplay = "";
|
||||
foreach (Message message in reportMessages)
|
||||
{
|
||||
if(message.MessageNotificationClass == Message.NotificationClass.NOA_NOD)
|
||||
{
|
||||
if (message.Elements[0] is NOA_NOD noa_nod)
|
||||
{
|
||||
if (core.IsTransit && noa_nod.ETAToKielCanal.HasValue)
|
||||
etaDisplay = noa_nod.ETAToKielCanal.Value.ToLocalTime().ToString();
|
||||
if (!core.IsTransit && noa_nod.ETAToPortOfCall.HasValue)
|
||||
etaDisplay = noa_nod.ETAToPortOfCall.Value.ToLocalTime().ToString();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Dictionary<string, string> coverInfos = new Dictionary<string, string>();
|
||||
coverInfos.Add("Ship", DBManager.Instance.GetShipNameFromCore(core));
|
||||
coverInfos.Add("ETA", core.ETA_NOA_NOD.HasValue ? core.ETA_NOA_NOD.Value.ToLocalTime().ToString() : "");
|
||||
coverInfos.Add("ETA", etaDisplay);
|
||||
coverInfos.Add("Port of call", core.Portname);
|
||||
coverInfos.Add("Visit-ID", core.DisplayId);
|
||||
coverInfos.Add("Class", classes);
|
||||
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 39 KiB After Width: | Height: | Size: 41 KiB |
@ -2,6 +2,6 @@
|
||||
|
||||
[assembly: AssemblyCompany("schick Informatik")]
|
||||
[assembly: AssemblyProduct("BSMD NSW interface")]
|
||||
[assembly: AssemblyInformationalVersion("6.9.11")]
|
||||
[assembly: AssemblyCopyright("Copyright © 2014-2021 schick Informatik")]
|
||||
[assembly: AssemblyInformationalVersion("6.9.12")]
|
||||
[assembly: AssemblyCopyright("Copyright © 2014-2022 schick Informatik")]
|
||||
[assembly: AssemblyTrademark("")]
|
||||
@ -1,4 +1,4 @@
|
||||
using System.Reflection;
|
||||
|
||||
[assembly: AssemblyVersion("6.9.11.*")]
|
||||
[assembly: AssemblyVersion("6.9.12.*")]
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user