Bugfix für 6.9: Document Id Types gleiches Format beim Import/Export sichergestellt
This commit is contained in:
parent
02f4c4397c
commit
59f51a0aff
@ -37,7 +37,7 @@
|
||||
<CreateWebPageOnPublish>true</CreateWebPageOnPublish>
|
||||
<WebPage>publish.html</WebPage>
|
||||
<ApplicationRevision>0</ApplicationRevision>
|
||||
<ApplicationVersion>6.9.14.0</ApplicationVersion>
|
||||
<ApplicationVersion>6.9.15.0</ApplicationVersion>
|
||||
<UseApplicationTrust>false</UseApplicationTrust>
|
||||
<CreateDesktopShortcut>true</CreateDesktopShortcut>
|
||||
<PublishWizardCompleted>true</PublishWizardCompleted>
|
||||
|
||||
@ -132,12 +132,12 @@ namespace ENI2.Excel
|
||||
string val = this.ReadText(lookup);
|
||||
if (val != null)
|
||||
{
|
||||
if (val.Equals("identity_card", StringComparison.CurrentCultureIgnoreCase) || val.Equals("1")) result = 0;
|
||||
if (val.Equals("identity_card", StringComparison.CurrentCultureIgnoreCase) || val.Equals("identity card", StringComparison.CurrentCultureIgnoreCase) || val.Equals("1")) result = 0;
|
||||
if (val.Equals("passport", StringComparison.CurrentCultureIgnoreCase) || val.Equals("2")) result = 1;
|
||||
if (val.Equals("muster_book", StringComparison.CurrentCultureIgnoreCase) || val.Equals("3")) result = 2;
|
||||
if (val.Equals("picture_id", StringComparison.CurrentCultureIgnoreCase) || val.Equals("4")) result = 3;
|
||||
if (val.Equals("residental_permit", StringComparison.CurrentCultureIgnoreCase) || val.Equals("5")) result = 4;
|
||||
if (val.Equals("other_legal_identity_document", StringComparison.CurrentCultureIgnoreCase) || val.Equals("6")) result = 5;
|
||||
if (val.Equals("muster_book", StringComparison.CurrentCultureIgnoreCase) || val.Equals("muster book", StringComparison.CurrentCultureIgnoreCase) || val.Equals("3")) result = 2;
|
||||
if (val.Equals("picture_id", StringComparison.CurrentCultureIgnoreCase) || val.Equals("picture id", StringComparison.CurrentCultureIgnoreCase) || val.Equals("4")) result = 3;
|
||||
if (val.Equals("residental_permit", StringComparison.CurrentCultureIgnoreCase) || val.Equals("residental permit", StringComparison.CurrentCultureIgnoreCase) || val.Equals("5")) result = 4;
|
||||
if (val.Equals("other_legal_identity_document", StringComparison.CurrentCultureIgnoreCase) || val.Equals("other legal identity document", StringComparison.CurrentCultureIgnoreCase) || val.Equals("6")) result = 5;
|
||||
if (val.Equals("ic", StringComparison.CurrentCultureIgnoreCase)) result = 0;
|
||||
}
|
||||
|
||||
|
||||
4
ENI2/Properties/Resources.Designer.cs
generated
4
ENI2/Properties/Resources.Designer.cs
generated
@ -3461,7 +3461,7 @@ namespace ENI2.Properties {
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Photo Id.
|
||||
/// Looks up a localized string similar to Picture Id.
|
||||
/// </summary>
|
||||
public static string textPhotoId {
|
||||
get {
|
||||
@ -3911,7 +3911,7 @@ namespace ENI2.Properties {
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to ResidencePermit.
|
||||
/// Looks up a localized string similar to Residental Permit.
|
||||
/// </summary>
|
||||
public static string textResidencePermit {
|
||||
get {
|
||||
|
||||
@ -842,10 +842,10 @@
|
||||
<value>Passport</value>
|
||||
</data>
|
||||
<data name="textPhotoId" xml:space="preserve">
|
||||
<value>Photo Id</value>
|
||||
<value>Picture Id</value>
|
||||
</data>
|
||||
<data name="textResidencePermit" xml:space="preserve">
|
||||
<value>ResidencePermit</value>
|
||||
<value>Residental Permit</value>
|
||||
</data>
|
||||
<data name="textPassenger" xml:space="preserve">
|
||||
<value>Passenger</value>
|
||||
|
||||
@ -2,6 +2,6 @@
|
||||
|
||||
[assembly: AssemblyCompany("schick Informatik")]
|
||||
[assembly: AssemblyProduct("BSMD NSW interface")]
|
||||
[assembly: AssemblyInformationalVersion("6.9.14")]
|
||||
[assembly: AssemblyInformationalVersion("6.9.15")]
|
||||
[assembly: AssemblyCopyright("Copyright © 2014-2022 schick Informatik")]
|
||||
[assembly: AssemblyTrademark("")]
|
||||
@ -1,4 +1,4 @@
|
||||
using System.Reflection;
|
||||
|
||||
[assembly: AssemblyVersion("6.9.14.*")]
|
||||
[assembly: AssemblyVersion("6.9.15.*")]
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user