View | Details | Raw Unified | Return to bug 14846
Collapse All | Expand All

(-)a/svc/holds (-3 / +2 lines)
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->holdingbranch()->branchcode() ne
127
        elsif ( $item->holding_branch() && $item->holding_branch()->branchcode() ne
128
            $h->branchcode()->branchcode() )
128
            $h->branch()->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
- 

Return to bug 14846