Lines 129-135
while ( my $h = $holds_rs->next() ) {
Link Here
|
129 |
$hold->{date_sent} = output_pref( dt_from_string($transferred_when) ); |
129 |
$hold->{date_sent} = output_pref( dt_from_string($transferred_when) ); |
130 |
$hold->{from_branch} = GetBranchName($transferred_from); |
130 |
$hold->{from_branch} = GetBranchName($transferred_from); |
131 |
} |
131 |
} |
132 |
elsif ( $item->holding_branch()->branchcode() ne |
132 |
elsif ( $item->holding_branch() && $item->holding_branch()->branchcode() ne |
133 |
$h->branch()->branchcode() ) |
133 |
$h->branch()->branchcode() ) |
134 |
{ |
134 |
{ |
135 |
$hold->{not_transferred} = 1; |
135 |
$hold->{not_transferred} = 1; |
136 |
- |
|
|