|
Lines 101-107
my @failedreturns = $query->param('failedreturn');
Link Here
|
| 101 |
our %return_failed = (); |
101 |
our %return_failed = (); |
| 102 |
for (@failedreturns) { $return_failed{$_} = 1; } |
102 |
for (@failedreturns) { $return_failed{$_} = 1; } |
| 103 |
|
103 |
|
| 104 |
my $findborrower = $query->param('findborrower'); |
104 |
my $findborrower = $query->param('findborrower') || q{}; |
| 105 |
$findborrower =~ s|,| |g; |
105 |
$findborrower =~ s|,| |g; |
| 106 |
my $borrowernumber = $query->param('borrowernumber'); |
106 |
my $borrowernumber = $query->param('borrowernumber'); |
| 107 |
|
107 |
|
|
Lines 122-128
if (C4::Context->preference("UseTablesortForCirc")) {
Link Here
|
| 122 |
$template->param(UseTablesortForCirc => 1); |
122 |
$template->param(UseTablesortForCirc => 1); |
| 123 |
} |
123 |
} |
| 124 |
|
124 |
|
| 125 |
my $barcode = $query->param('barcode') || ''; |
125 |
my $barcode = $query->param('barcode') || q{}; |
| 126 |
$barcode =~ s/^\s*|\s*$//g; # remove leading/trailing whitespace |
126 |
$barcode =~ s/^\s*|\s*$//g; # remove leading/trailing whitespace |
| 127 |
|
127 |
|
| 128 |
$barcode = barcodedecode($barcode) if( $barcode && C4::Context->preference('itemBarcodeInputFilter')); |
128 |
$barcode = barcodedecode($barcode) if( $barcode && C4::Context->preference('itemBarcodeInputFilter')); |
|
Lines 131-137
my $duedatespec = $query->param('duedatespec') || $session->param('stickydu
Link Here
|
| 131 |
my $issueconfirmed = $query->param('issueconfirmed'); |
131 |
my $issueconfirmed = $query->param('issueconfirmed'); |
| 132 |
my $cancelreserve = $query->param('cancelreserve'); |
132 |
my $cancelreserve = $query->param('cancelreserve'); |
| 133 |
my $organisation = $query->param('organisations'); |
133 |
my $organisation = $query->param('organisations'); |
| 134 |
my $print = $query->param('print'); |
134 |
my $print = $query->param('print') || q{}; |
| 135 |
my $newexpiry = $query->param('dateexpiry'); |
135 |
my $newexpiry = $query->param('dateexpiry'); |
| 136 |
my $debt_confirmed = $query->param('debt_confirmed') || 0; # Don't show the debt error dialog twice |
136 |
my $debt_confirmed = $query->param('debt_confirmed') || 0; # Don't show the debt error dialog twice |
| 137 |
|
137 |
|
| 138 |
- |
|
|