Lines 69-81
if($op eq 'cud-save_and_preview'){
Link Here
|
69 |
$library = Koha::Libraries->find($branch); |
69 |
$library = Koha::Libraries->find($branch); |
70 |
|
70 |
|
71 |
if (C4::Context->preference('RoutingListAddReserves')){ |
71 |
if (C4::Context->preference('RoutingListAddReserves')){ |
72 |
# get existing reserves ..... |
|
|
73 |
|
72 |
|
74 |
my $holds = $biblio->current_holds; |
|
|
75 |
my $count = $holds->count; |
76 |
while ( my $hold = $holds->next ) { |
77 |
$count-- if $hold->is_waiting; |
78 |
} |
79 |
my $notes; |
73 |
my $notes; |
80 |
my $title = $subs->{'bibliotitle'}; |
74 |
my $title = $subs->{'bibliotitle'}; |
81 |
for my $routing ( @routinglist ) { |
75 |
for my $routing ( @routinglist ) { |
82 |
- |
|
|