|
Lines 297-305
if ($barcode) {
Link Here
|
| 297 |
# Block return if multi-part and confirm has not been received |
297 |
# Block return if multi-part and confirm has not been received |
| 298 |
my $needs_confirm = |
298 |
my $needs_confirm = |
| 299 |
C4::Context->preference("CircConfirmItemParts") |
299 |
C4::Context->preference("CircConfirmItemParts") |
|
|
300 |
&& $item |
| 300 |
&& $item->materials |
301 |
&& $item->materials |
| 301 |
&& !$query->param('multiple_confirm'); |
302 |
&& !$query->param('multiple_confirm'); |
| 302 |
$template->param('multiple_confirmed' => 1) if $query->param('multiple_confirm'); |
303 |
$template->param( 'multiple_confirmed' => 1 ) |
|
|
304 |
if $query->param('multiple_confirm'); |
| 303 |
|
305 |
|
| 304 |
# do the return |
306 |
# do the return |
| 305 |
( $returned, $messages, $issue, $borrower ) = |
307 |
( $returned, $messages, $issue, $borrower ) = |
| 306 |
- |
|
|