MiniVersion 3.5.5 (ISMCompanyId)
This commit is contained in:
parent
72c9659cfc
commit
bfaba32698
Binary file not shown.
@ -1009,12 +1009,14 @@ namespace bsmd.ExcelReadService
|
||||
reader.Conf.ConfirmText("STAT.MMSINumber", stat.MMSINumber, (stat.MMSINumber.IsNullOrEmpty() || (stat.MMSINumber.Length != 9)) ? ExcelReader.ReadState.FAIL : ExcelReader.ReadState.OK);
|
||||
|
||||
stat.ISMCompanyId = reader.ReadTextNoWhitespace("STAT.ISMCompanyId");
|
||||
if(!stat.ISMCompanyId.IsNullOrEmpty() && stat.ISMCompanyId.Length < 7)
|
||||
|
||||
reader.Conf.ConfirmText("STAT.ISMCompanyId", stat.ISMCompanyId, (stat.ISMCompanyId.IsNullOrEmpty() || (stat.ISMCompanyId.Length != 7)) ? ExcelReader.ReadState.FAIL : ExcelReader.ReadState.OK);
|
||||
|
||||
if (!stat.ISMCompanyId.IsNullOrEmpty() && stat.ISMCompanyId.Length < 7)
|
||||
{
|
||||
while (stat.ISMCompanyId.Length < 7)
|
||||
stat.ISMCompanyId = "0" + stat.ISMCompanyId;
|
||||
}
|
||||
reader.Conf.ConfirmText("STAT.ISMCompanyId", stat.ISMCompanyId, stat.ISMCompanyId.IsNullOrEmpty() ? ExcelReader.ReadState.WARN : ExcelReader.ReadState.OK);
|
||||
}
|
||||
|
||||
string transportMode = reader.ReadText("STAT.TransportMode");
|
||||
if(transportMode != null)
|
||||
|
||||
@ -2,6 +2,6 @@
|
||||
|
||||
[assembly: AssemblyCompany("Informatikbüro Daniel Schick")]
|
||||
[assembly: AssemblyProduct("BSMD NSW interface")]
|
||||
[assembly: AssemblyInformationalVersion("3.5.4")]
|
||||
[assembly: AssemblyInformationalVersion("3.5.5")]
|
||||
[assembly: AssemblyCopyright("Copyright © 2014-2017 Informatikbüro Daniel Schick. All rights reserved.")]
|
||||
[assembly: AssemblyTrademark("")]
|
||||
@ -1,4 +1,4 @@
|
||||
using System.Reflection;
|
||||
|
||||
[assembly: AssemblyVersion("3.5.4.*")]
|
||||
[assembly: AssemblyVersion("3.5.5.*")]
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user