DeliveryAdminWindow: Add export option for BKI
This commit is contained in:
@ -305,7 +305,7 @@ namespace Elwig.Helpers {
|
||||
}
|
||||
|
||||
public static (string, string?) SplitName(string fullName, string? familyName) {
|
||||
if (familyName == null) return (fullName, null);
|
||||
if (familyName == null || familyName == "") return (fullName, null);
|
||||
var p0 = fullName.ToLower().IndexOf(familyName.ToLower());
|
||||
if (p0 == -1) return (fullName, null);
|
||||
var p1 = fullName.IndexOf(" und ");
|
||||
|
Reference in New Issue
Block a user