Lines 117-123
if( $basketno && $ordernumber) {
Link Here
|
117 |
} else { |
117 |
} else { |
118 |
# Search for booksellers to transfer from/to |
118 |
# Search for booksellers to transfer from/to |
119 |
$op = '' unless $op; |
119 |
$op = '' unless $op; |
120 |
if( $op eq "cud-do_search" ) { |
120 |
if( $op eq "do_search" ) { |
121 |
my $booksellers = Koha::Acquisition::Booksellers->search( |
121 |
my $booksellers = Koha::Acquisition::Booksellers->search( |
122 |
{ name => { -like => "%$query%" } }, |
122 |
{ name => { -like => "%$query%" } }, |
123 |
{ order_by => { -asc => 'name' } } ); |
123 |
{ order_by => { -asc => 'name' } } ); |
124 |
- |
|
|