Lines 77-83
elsif ( $op eq "cud-set_public_note" ) { # i.e., itemnotes parameter passed from
Link Here
|
77 |
$item->exclude_from_local_holds_priority($exclude_from_local_holds_priority); |
77 |
$item->exclude_from_local_holds_priority($exclude_from_local_holds_priority); |
78 |
$messages = "updated_exclude_from_local_holds_priority=$exclude_from_local_holds_priority&"; |
78 |
$messages = "updated_exclude_from_local_holds_priority=$exclude_from_local_holds_priority&"; |
79 |
} elsif ( $op eq "cud-set_bookable" && $bookable ne $item_data_hashref->{'bookable'} ) { |
79 |
} elsif ( $op eq "cud-set_bookable" && $bookable ne $item_data_hashref->{'bookable'} ) { |
80 |
undef($bookable) if $bookable eq ""; |
80 |
undef $bookable if $bookable eq q{}; |
81 |
$item->bookable($bookable); |
81 |
$item->bookable($bookable); |
82 |
} elsif ( $op eq "cud-set_damaged" && $damaged ne $item_data_hashref->{'damaged'}) { |
82 |
} elsif ( $op eq "cud-set_damaged" && $damaged ne $item_data_hashref->{'damaged'}) { |
83 |
$item->damaged($damaged); |
83 |
$item->damaged($damaged); |
84 |
- |
|
|