Lines 100-109
if (C4::Context->preference('ExtendedPatronAttributes')) {
Link Here
|
100 |
); |
100 |
); |
101 |
} |
101 |
} |
102 |
|
102 |
|
103 |
# Computes full borrower address |
|
|
104 |
my $roadtype = C4::Koha::GetAuthorisedValueByCode( 'ROADTYPE', $bor->{streettype} ) // ''; |
105 |
my $address = $bor->{'streetnumber'} . " $roadtype " . $bor->{'address'}; |
106 |
|
107 |
$template->param( othernames => $bor->{'othernames'}, |
103 |
$template->param( othernames => $bor->{'othernames'}, |
108 |
surname => $bor->{'surname'}, |
104 |
surname => $bor->{'surname'}, |
109 |
firstname => $bor->{'firstname'}, |
105 |
firstname => $bor->{'firstname'}, |
Lines 112-119
my $address = $bor->{'streetnumber'} . " $roadtype " . $bor->{'address'};
Link Here
|
112 |
categorycode => $bor->{'categorycode'}, |
108 |
categorycode => $bor->{'categorycode'}, |
113 |
category_type => $bor->{'category_type'}, |
109 |
category_type => $bor->{'category_type'}, |
114 |
categoryname => $bor->{'description'}, |
110 |
categoryname => $bor->{'description'}, |
115 |
address => $address, |
111 |
address => $bor->{address}, |
116 |
address2 => $bor->{'address2'}, |
112 |
address2 => $bor->{'address2'}, |
|
|
113 |
streettype => $$bor->{streettype}, |
117 |
city => $bor->{'city'}, |
114 |
city => $bor->{'city'}, |
118 |
state => $bor->{'state'}, |
115 |
state => $bor->{'state'}, |
119 |
zipcode => $bor->{'zipcode'}, |
116 |
zipcode => $bor->{'zipcode'}, |