Lines 127-133
if ( $op eq 'delete_confirm' ) {
Link Here
|
127 |
my $delbiblio = $query->param('delbiblio'); |
127 |
my $delbiblio = $query->param('delbiblio'); |
128 |
my $basket_obj = Koha::Acquisition::Baskets->find($basketno); |
128 |
my $basket_obj = Koha::Acquisition::Baskets->find($basketno); |
129 |
|
129 |
|
130 |
my $orders = $basket_obj->orders; |
130 |
my $orders = $basket_obj->orders->search({ |
|
|
131 |
datecancellationprinted => undef |
132 |
}); |
131 |
|
133 |
|
132 |
my @cannotdelbiblios; |
134 |
my @cannotdelbiblios; |
133 |
|
135 |
|
134 |
- |
|
|