Lines 283-288
sub import_patrons {
Link Here
|
283 |
next if $col eq 'password' && !$overwrite_passwords; |
283 |
next if $col eq 'password' && !$overwrite_passwords; |
284 |
next if $col eq 'dateexpiry' && $update_dateexpiry; |
284 |
next if $col eq 'dateexpiry' && $update_dateexpiry; |
285 |
|
285 |
|
|
|
286 |
$borrower{$col} = $member->{$col} if $col eq 'dateexpiry' && !$columns[ $csvkeycol{$col} ]; |
287 |
|
286 |
unless ( exists( $csvkeycol{$col} ) || $defaults->{$col} ) { |
288 |
unless ( exists( $csvkeycol{$col} ) || $defaults->{$col} ) { |
287 |
$borrower{$col} = $member->{$col} if ( $member->{$col} ); |
289 |
$borrower{$col} = $member->{$col} if ( $member->{$col} ); |
288 |
} |
290 |
} |
289 |
- |
|
|