Lines 2023-2029
sub AddReturn {
Link Here
|
2023 |
if (defined $update_loc_rules->{_ALL_}) { |
2023 |
if (defined $update_loc_rules->{_ALL_}) { |
2024 |
if ($update_loc_rules->{_ALL_} eq '_PERM_') { $update_loc_rules->{_ALL_} = $item->permanent_location; } |
2024 |
if ($update_loc_rules->{_ALL_} eq '_PERM_') { $update_loc_rules->{_ALL_} = $item->permanent_location; } |
2025 |
if ($update_loc_rules->{_ALL_} eq '_BLANK_') { $update_loc_rules->{_ALL_} = ''; } |
2025 |
if ($update_loc_rules->{_ALL_} eq '_BLANK_') { $update_loc_rules->{_ALL_} = ''; } |
2026 |
if ( defined $item->location && $item->location ne $update_loc_rules->{_ALL_}) { |
2026 |
if ( |
|
|
2027 |
( defined $item->location && $item->location ne $update_loc_rules->{_ALL_}) || |
2028 |
(!defined $item->location && $update_loc_rules->{_ALL_} ne "") |
2029 |
) { |
2027 |
$messages->{'ItemLocationUpdated'} = { from => $item->location, to => $update_loc_rules->{_ALL_} }; |
2030 |
$messages->{'ItemLocationUpdated'} = { from => $item->location, to => $update_loc_rules->{_ALL_} }; |
2028 |
$item->location($update_loc_rules->{_ALL_})->store({skip_record_index=>1}); |
2031 |
$item->location($update_loc_rules->{_ALL_})->store({skip_record_index=>1}); |
2029 |
} |
2032 |
} |
2030 |
- |
|
|