5.0.17 Komische Korrektur mit ETAPortOfCall (bei Falscheingaben)
This commit is contained in:
parent
26a668a4d9
commit
e3fea3560f
@ -26,12 +26,12 @@
|
||||
<value>1000</value>
|
||||
</setting>
|
||||
<setting name="LockingServerAddress" serializeAs="String">
|
||||
<value>http://192.168.2.4/LockingService/LockingService.svc</value>
|
||||
<!--value>http://heupferd/bsmd.LockingService/LockingService.svc</value-->
|
||||
<!--value>http://192.168.2.4/LockingService/LockingService.svc</value-->
|
||||
<value>http://heupferd/bsmd.LockingService/LockingService.svc</value>
|
||||
</setting>
|
||||
<setting name="ConnectionString" serializeAs="String">
|
||||
<value>Data Source=192.168.2.12;Initial Catalog=nsw;Uid=dfuser;Pwd=dfpasswd;Connect Timeout=30;Encrypt=False;TrustServerCertificate=False</value>
|
||||
<!--value>Data Source=(localdb)\Projects;Initial Catalog=nsw;Integrated Security=True;Connect Timeout=30;Encrypt=False;TrustServerCertificate=False</value-->
|
||||
<!--value>Data Source=192.168.2.12;Initial Catalog=nsw;Uid=dfuser;Pwd=dfpasswd;Connect Timeout=30;Encrypt=False;TrustServerCertificate=False</value-->
|
||||
<value>Data Source=(localdb)\Projects;Initial Catalog=nsw;Integrated Security=True;Connect Timeout=30;Encrypt=False;TrustServerCertificate=False</value>
|
||||
</setting>
|
||||
</ENI2.Properties.Settings>
|
||||
</applicationSettings>
|
||||
|
||||
Binary file not shown.
@ -438,9 +438,9 @@ namespace bsmd.ExcelReadService
|
||||
if (val is DateTime)
|
||||
{
|
||||
this.Conf.ConfirmDate(lookup, val, noHighlight ? ReadState.NONE : ReadState.OK);
|
||||
return val;
|
||||
date = val;
|
||||
}
|
||||
if (val is double)
|
||||
else if (val is double)
|
||||
{
|
||||
try
|
||||
{
|
||||
|
||||
@ -1158,15 +1158,15 @@ namespace bsmd.ExcelReadService
|
||||
{
|
||||
if (eta.HasValue)
|
||||
noa_nod.ETAToKielCanal = eta;
|
||||
else
|
||||
noa_nod.ETAToKielCanal = messageCore.ETAKielCanal;
|
||||
//else
|
||||
// noa_nod.ETAToKielCanal = messageCore.ETAKielCanal;
|
||||
}
|
||||
else
|
||||
{
|
||||
if (eta.HasValue)
|
||||
noa_nod.ETAToPortOfCall = eta;
|
||||
else
|
||||
noa_nod.ETAToPortOfCall = messageCore.ETA;
|
||||
//else
|
||||
// noa_nod.ETAToPortOfCall = messageCore.ETA;
|
||||
|
||||
// Zeit muss zurückkonvertiert werden, da toUniversalTime() kodiert
|
||||
if(noa_nod.ETAToPortOfCall.HasValue)
|
||||
|
||||
@ -23,6 +23,7 @@
|
||||
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<CodeAnalysisRuleSet>..\..\..\..\mtc\puls200.frame\frame.ruleset</CodeAnalysisRuleSet>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||
|
||||
@ -2,6 +2,6 @@
|
||||
|
||||
[assembly: AssemblyCompany("schick Informatik")]
|
||||
[assembly: AssemblyProduct("BSMD NSW interface")]
|
||||
[assembly: AssemblyInformationalVersion("5.0.15")]
|
||||
[assembly: AssemblyInformationalVersion("5.0.17")]
|
||||
[assembly: AssemblyCopyright("Copyright © 2014-2018 schick Informatik")]
|
||||
[assembly: AssemblyTrademark("")]
|
||||
@ -1,4 +1,4 @@
|
||||
using System.Reflection;
|
||||
|
||||
[assembly: AssemblyVersion("5.0.15.*")]
|
||||
[assembly: AssemblyVersion("5.0.17.*")]
|
||||
|
||||
|
||||
@ -23,6 +23,7 @@
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<UseVSHostingProcess>false</UseVSHostingProcess>
|
||||
<CodeAnalysisRuleSet>..\..\..\..\mtc\puls200.frame\frame.ruleset</CodeAnalysisRuleSet>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||
<DebugType>pdbonly</DebugType>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user