Lines 299-304
sub set_or_blank {
Link Here
|
299 |
|
299 |
|
300 |
foreach my $col ( keys %{$columns_info} ) { |
300 |
foreach my $col ( keys %{$columns_info} ) { |
301 |
|
301 |
|
|
|
302 |
next if $col eq 'onloan'; # Do not blank onloan field |
302 |
next if exists $properties->{$col}; |
303 |
next if exists $properties->{$col}; |
303 |
|
304 |
|
304 |
if ( $columns_info->{$col}->{is_nullable} ) { |
305 |
if ( $columns_info->{$col}->{is_nullable} ) { |
305 |
- |
|
|