Lines 124-131
while ( my $h = $holds_rs->next() ) {
Link Here
|
124 |
$hold->{date_sent} = output_pref( dt_from_string($transferred_when) ); |
124 |
$hold->{date_sent} = output_pref( dt_from_string($transferred_when) ); |
125 |
$hold->{from_branch} = GetBranchName($transferred_from); |
125 |
$hold->{from_branch} = GetBranchName($transferred_from); |
126 |
} |
126 |
} |
127 |
elsif ( $item->holding_branch() && $item->holding_branch()->branchcode() ne |
127 |
elsif ( $item->holdingbranch() && $item->holdingbranch()->branchcode() ne |
128 |
$h->branch()->branchcode() ) |
128 |
$h->branchcode()->branchcode() ) |
129 |
{ |
129 |
{ |
130 |
$hold->{not_transferred} = 1; |
130 |
$hold->{not_transferred} = 1; |
131 |
$hold->{not_transferred_by} = $h->item()->holdingbranch()->branchname(); |
131 |
$hold->{not_transferred_by} = $h->item()->holdingbranch()->branchname(); |
132 |
- |
|
|