Lines 49-55
my $checkitem = $input->param('checkitem');
Link Here
|
49 |
my $expirationdate = $input->param('expiration_date'); |
49 |
my $expirationdate = $input->param('expiration_date'); |
50 |
my $itemtype = $input->param('itemtype') || undef; |
50 |
my $itemtype = $input->param('itemtype') || undef; |
51 |
my $non_priority = $input->param('non_priority'); |
51 |
my $non_priority = $input->param('non_priority'); |
52 |
my $hold_group = $input->param('hold_group') || undef; |
52 |
my $hold_group_param = $input->param('hold_group') || undef; |
|
|
53 |
my $hold_group; |
53 |
|
54 |
|
54 |
my $patron = Koha::Patrons->find( $borrowernumber ); |
55 |
my $patron = Koha::Patrons->find( $borrowernumber ); |
55 |
|
56 |
|
Lines 68-74
my $found;
Link Here
|
68 |
|
69 |
|
69 |
if ( $patron ) { |
70 |
if ( $patron ) { |
70 |
|
71 |
|
71 |
if ( @biblionumbers > 1 && $hold_group ) { |
72 |
if ( $hold_group_param ) { |
72 |
$hold_group = Koha::HoldGroup->new->store; |
73 |
$hold_group = Koha::HoldGroup->new->store; |
73 |
} |
74 |
} |
74 |
|
75 |
|
75 |
- |
|
|