Beim Excel-Import PAS wird CountryOfBirth nur dumm gelesen, ohne Nationalitäten Überprüfung
This commit is contained in:
parent
42b09532da
commit
78bc71d2ca
@ -2333,7 +2333,8 @@ namespace ENI2.Excel
|
||||
pas.PassengerInTransit = reader.ReadCellAsBool(sheetTitle, string.Format("H{0}", i + 17));
|
||||
|
||||
pas.PassengerPlaceOfBirth = reader.ReadCellAsText(sheetTitle, string.Format("J{0}", i + 17));
|
||||
pas.PassengerCountryOfBirth = ReadNationality(reader.ReadCellAsText(sheetTitle, string.Format("K{0}", i + 17)), out canceled);
|
||||
pas.PassengerCountryOfBirth = reader.ReadCellAsText(sheetTitle, string.Format("K{0}", i + 17));
|
||||
|
||||
if (canceled) return true;
|
||||
DateTime? dateOfBirth = reader.ReadCellAsDateTime(sheetTitle, string.Format("L{0}", i + 17));
|
||||
pas.PassengerDateOfBirth = dateOfBirth;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user