|
Lines 620-625
$template->param(
Link Here
|
| 620 |
$itemnumber = GetItemnumberFromBarcode( $query->param('barcode') ); |
620 |
$itemnumber = GetItemnumberFromBarcode( $query->param('barcode') ); |
| 621 |
if ( $itemnumber ) { |
621 |
if ( $itemnumber ) { |
| 622 |
my ( $holdingBranch, $collectionBranch ) = GetCollectionItemBranches( $itemnumber ); |
622 |
my ( $holdingBranch, $collectionBranch ) = GetCollectionItemBranches( $itemnumber ); |
|
|
623 |
$holdingBranch //= ''; |
| 624 |
$collectionBranch //= ''; |
| 623 |
if ( ! ( $holdingBranch eq $collectionBranch ) ) { |
625 |
if ( ! ( $holdingBranch eq $collectionBranch ) ) { |
| 624 |
$template->param( |
626 |
$template->param( |
| 625 |
collectionItemNeedsTransferred => 1, |
627 |
collectionItemNeedsTransferred => 1, |
| 626 |
- |
|
|