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

(-)a/circ/circulation.pl (-1 / +1 lines)
Lines 661-667 if($bor_messages_loop){ $template->param(flagged => 1 ); } Link Here
661
661
662
# Computes full borrower address
662
# Computes full borrower address
663
my (undef, $roadttype_hashref) = &GetRoadTypes();
663
my (undef, $roadttype_hashref) = &GetRoadTypes();
664
my $address = $borrower->{'streetnumber'}.' '.$roadttype_hashref->{$borrower->{'streettype'}}.' '.$borrower->{'address'};
664
my $address = $borrower->{'streetnumber'}.' '.$borrower->{'address'}.' '.$roadttype_hashref->{$borrower->{'streettype'}};
665
665
666
$template->param(
666
$template->param(
667
    issued_itemtypes_count_loop => \@issued_itemtypes_count_loop,
667
    issued_itemtypes_count_loop => \@issued_itemtypes_count_loop,
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/circ-menu.inc (+3 lines)
Lines 13-18 Link Here
13
<!-- /TMPL_IF -->
13
<!-- /TMPL_IF -->
14
<!-- /TMPL_IF -->
14
<!-- /TMPL_IF -->
15
    <li><!-- TMPL_IF NAME="address"-->
15
    <li><!-- TMPL_IF NAME="address"-->
16
            <!--TMPL_IF NAME="streetnumber"-->
17
                <!-- TMPL_VAR NAME="streetnumber" -->
18
            <!-- /TMPL_IF -->
16
            <!-- TMPL_VAR NAME="address" -->
19
            <!-- TMPL_VAR NAME="address" -->
17
            <!--TMPL_IF NAME="roaddetails"-->
20
            <!--TMPL_IF NAME="roaddetails"-->
18
                <!-- TMPL_VAR NAME="roaddetails" -->
21
                <!-- TMPL_VAR NAME="roaddetails" -->
(-)a/members/boraccount.pl (-1 / +4 lines)
Lines 113-118 $template->param( adultborrower => 1 ) if ( $data->{'category_type'} eq 'A' ); Link Here
113
my ($picture, $dberror) = GetPatronImage($data->{'cardnumber'});
113
my ($picture, $dberror) = GetPatronImage($data->{'cardnumber'});
114
$template->param( picture => 1 ) if $picture;
114
$template->param( picture => 1 ) if $picture;
115
115
116
my (undef, $roadttype_hashref) = &GetRoadTypes();
117
my $address = $data->{'streetnumber'}.' '.$data->{'address'}.' '.$roadttype_hashref->{$data->{'streettype'}};
118
116
$template->param(
119
$template->param(
117
    finesview           => 1,
120
    finesview           => 1,
118
    firstname           => $data->{'firstname'},
121
    firstname           => $data->{'firstname'},
Lines 123-129 $template->param( Link Here
123
    category_type       => $data->{'category_type'},
126
    category_type       => $data->{'category_type'},
124
 #   category_description => $data->{'description'},
127
 #   category_description => $data->{'description'},
125
    categoryname		 => $data->{'description'},
128
    categoryname		 => $data->{'description'},
126
    address             => $data->{'address'},
129
    address             => $address,
127
    address2            => $data->{'address2'},
130
    address2            => $data->{'address2'},
128
    city                => $data->{'city'},
131
    city                => $data->{'city'},
129
    zipcode             => $data->{'zipcode'},
132
    zipcode             => $data->{'zipcode'},
(-)a/tools/viewlog.pl (-2 / +3 lines)
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
- 

Return to bug 3765