Version 6.9.9 immer weitere Korrekturen, wir nähern uns dem Ziel..
This commit is contained in:
parent
c9e931cd0d
commit
6f770c0290
@ -558,8 +558,14 @@ namespace ENI2
|
||||
this.detailView.Children.Clear();
|
||||
this.controlCache.Clear();
|
||||
|
||||
// return to "new" overview
|
||||
Dispatcher.BeginInvoke((Action)(() => this.listBoxMessages_SelectionChanged(this, null)));
|
||||
// return to "new" overviewdan
|
||||
Dispatcher.BeginInvoke((Action)(() =>
|
||||
{
|
||||
this.listBoxMessages_SelectionChanged(this, null);
|
||||
shipNameLabel.Text = this.Core.Shipname;
|
||||
shipEMailLabel.Text = this.Core.HerbergEmailContactReportingVessel;
|
||||
}
|
||||
));
|
||||
|
||||
// if the entity has been highlighted (through remote change detection), reset this here
|
||||
this.OnHighlightReset();
|
||||
|
||||
@ -37,7 +37,7 @@
|
||||
<CreateWebPageOnPublish>true</CreateWebPageOnPublish>
|
||||
<WebPage>publish.html</WebPage>
|
||||
<ApplicationRevision>0</ApplicationRevision>
|
||||
<ApplicationVersion>6.9.8.0</ApplicationVersion>
|
||||
<ApplicationVersion>6.9.9.0</ApplicationVersion>
|
||||
<UseApplicationTrust>false</UseApplicationTrust>
|
||||
<CreateDesktopShortcut>true</CreateDesktopShortcut>
|
||||
<PublishWizardCompleted>true</PublishWizardCompleted>
|
||||
|
||||
@ -385,12 +385,16 @@ namespace ENI2.Excel
|
||||
DateTime? etaDate = this.ReadDate(dateField);
|
||||
DateTime? etaTime = this.ReadTime(timeField);
|
||||
if (etaDate != null)
|
||||
{
|
||||
result = new DateTime(etaDate.Value.Year, etaDate.Value.Month, etaDate.Value.Day);
|
||||
{
|
||||
if (etaTime != null)
|
||||
{
|
||||
result = new DateTime(etaDate.Value.Year, etaDate.Value.Month, etaDate.Value.Day, etaTime.Value.Hour, etaTime.Value.Minute, etaTime.Value.Second, DateTimeKind.Local);
|
||||
result = result.Value.ToUniversalTime();
|
||||
}
|
||||
else
|
||||
{
|
||||
result = new DateTime(etaDate.Value.Year, etaDate.Value.Month, etaDate.Value.Day, 0, 0, 0, DateTimeKind.Local);
|
||||
result = result.Value.ToUniversalTime();
|
||||
}
|
||||
}
|
||||
|
||||
@ -429,8 +433,11 @@ namespace ENI2.Excel
|
||||
result = tmpDate;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
if((val is string) && ((string)val).EndsWith("lt", StringComparison.OrdinalIgnoreCase))
|
||||
val = ((string)val).Substring(0, ((string)val).Length - 2);
|
||||
|
||||
if (result == null)
|
||||
{
|
||||
if (DateTime.TryParseExact(val, "HH:mm:ss", CultureInfo.InvariantCulture, DateTimeStyles.NoCurrentDateDefault, out DateTime date))
|
||||
|
||||
@ -2,6 +2,6 @@
|
||||
|
||||
[assembly: AssemblyCompany("schick Informatik")]
|
||||
[assembly: AssemblyProduct("BSMD NSW interface")]
|
||||
[assembly: AssemblyInformationalVersion("6.9.8")]
|
||||
[assembly: AssemblyInformationalVersion("6.9.9")]
|
||||
[assembly: AssemblyCopyright("Copyright © 2014-2021 schick Informatik")]
|
||||
[assembly: AssemblyTrademark("")]
|
||||
@ -1,4 +1,4 @@
|
||||
using System.Reflection;
|
||||
|
||||
[assembly: AssemblyVersion("6.9.8.*")]
|
||||
[assembly: AssemblyVersion("6.9.9.*")]
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user