Lines 73-78
if ($src eq 'circ') { # if we were called from circulation, use the circulatio
Link Here
|
73 |
my $borrowernumber = $object; |
73 |
my $borrowernumber = $object; |
74 |
my $data = GetMember('borrowernumber'=>$borrowernumber); |
74 |
my $data = GetMember('borrowernumber'=>$borrowernumber); |
75 |
my ($picture, $dberror) = GetPatronImage($data->{'cardnumber'}); |
75 |
my ($picture, $dberror) = GetPatronImage($data->{'cardnumber'}); |
|
|
76 |
my (undef, $roadttype_hashref) = &GetRoadTypes(); |
77 |
my $address = $data->{'streetnumber'}.' '.$data->{'address'}.' '.$roadttype_hashref->{$data->{'streettype'}}; |
76 |
$template->param( picture => 1 ) if $picture; |
78 |
$template->param( picture => 1 ) if $picture; |
77 |
$template->param( menu => 1, |
79 |
$template->param( menu => 1, |
78 |
title => $data->{'title'}, |
80 |
title => $data->{'title'}, |
Lines 83-89
if ($src eq 'circ') { # if we were called from circulation, use the circulatio
Link Here
|
83 |
cardnumber => $data->{'cardnumber'}, |
85 |
cardnumber => $data->{'cardnumber'}, |
84 |
categorycode => $data->{'categorycode'}, |
86 |
categorycode => $data->{'categorycode'}, |
85 |
categoryname => $data->{'description'}, |
87 |
categoryname => $data->{'description'}, |
86 |
address => $data->{'address'}, |
88 |
address => $address, |
87 |
address2 => $data->{'address2'}, |
89 |
address2 => $data->{'address2'}, |
88 |
city => $data->{'city'}, |
90 |
city => $data->{'city'}, |
89 |
zipcode => $data->{'zipcode'}, |
91 |
zipcode => $data->{'zipcode'}, |
90 |
- |
|
|