Bug 30878: Avoid resetting waiting reserves tab
[koha-ffzg.git] / catalogue / updateitem.pl
index 9d11216..6d9022f 100755 (executable)
 # along with Koha; if not, see <http://www.gnu.org/licenses>.
 use Modern::Perl;
 use CGI qw ( -utf8 );
-use C4::Auth;
+use C4::Auth qw( checkauth );
 use C4::Context;
-use C4::Biblio;
-use C4::Items;
 use C4::Output;
-use C4::Circulation;
+use C4::Circulation qw( LostItem );
 use C4::Reserves;
 
-my $cgi= new CGI;
+my $cgi= CGI->new;
 
 checkauth($cgi, 0, {circulate => 'circulate_remaining_permissions'}, 'intranet');
 
@@ -56,6 +54,8 @@ for ($damaged,$itemlost,$withdrawn) {
     }
 }
 
+my $messages = q{};
+
 # modify MARC item if input differs from items table.
 if ( $op eq "set_non_public_note" ) {
     checkauth($cgi, 0, {editcatalogue => 'edit_items'}, 'intranet');
@@ -74,6 +74,7 @@ elsif ( $op eq "set_public_note" ) { # i.e., itemnotes parameter passed from for
     $item->withdrawn($withdrawn);
 } elsif ( $op eq "set_exclude_priority" && $exclude_from_local_holds_priority ne $item_data_hashref->{'exclude_from_local_holds_priority'}) {
     $item->exclude_from_local_holds_priority($exclude_from_local_holds_priority);
+    $messages = "updated_exclude_from_local_holds_priority=$exclude_from_local_holds_priority&";
 } elsif ( $op eq "set_damaged" && $damaged ne $item_data_hashref->{'damaged'}) {
     $item->damaged($damaged);
 } else {
@@ -86,4 +87,4 @@ $item->store;
 
 LostItem($itemnumber, 'moredetail') if $op eq "set_lost";
 
-print $cgi->redirect("moredetail.pl?biblionumber=$biblionumber&itemnumber=$itemnumber#item$itemnumber");
+print $cgi->redirect("moredetail.pl?" . $messages . "biblionumber=$biblionumber&itemnumber=$itemnumber#item$itemnumber");