|
Lines 620-626
$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 |
if ( ! ( $holdingBranch eq $collectionBranch ) ) { |
623 |
if ( ! ( ($holdingBranch // '') eq ( $collectionBranch // '' ) ) ) { |
| 624 |
$template->param( |
624 |
$template->param( |
| 625 |
collectionItemNeedsTransferred => 1, |
625 |
collectionItemNeedsTransferred => 1, |
| 626 |
collectionBranch => GetBranchName($collectionBranch), |
626 |
collectionBranch => GetBranchName($collectionBranch), |
| 627 |
- |
|
|