Lines 242-248
if ( $query->param('place_reserve') ) {
Link Here
|
242 |
my $biblionumber = $biblioNum; |
242 |
my $biblionumber = $biblioNum; |
243 |
|
243 |
|
244 |
#item may belong to a host biblio, if yes change biblioNum to hosts bilbionumber |
244 |
#item may belong to a host biblio, if yes change biblioNum to hosts bilbionumber |
245 |
my $hostbiblioNum = GetBiblionumberFromItemnumber($itemnumber); |
245 |
my $hostbiblioNum = Koha::Items->find( $itemnumber )->biblio->biblionumber; |
246 |
if ( $hostbiblioNum ne $biblioNum ) { |
246 |
if ( $hostbiblioNum ne $biblioNum ) { |
247 |
$biblionumber = $hostbiblioNum; |
247 |
$biblionumber = $hostbiblioNum; |
248 |
} |
248 |
} |
249 |
- |
|
|