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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember-print.tt (-1 / +1 lines)
Lines 87-93 Link Here
87
                        <td>[% reserve.waiting_at %]</td>
87
                        <td>[% reserve.waiting_at %]</td>
88
                    </tr>
88
                    </tr>
89
                [% END %]
89
                [% END %]
90
	    </table>
90
    </table>
91
    [% END %]
91
    [% END %]
92
92
93
    [% IF ( accounts && ( totaldue != '0.00' ) ) %]
93
    [% IF ( accounts && ( totaldue != '0.00' ) ) %]
(-)a/members/summary-print.pl (-8 / +7 lines)
Lines 125-137 sub build_reserve_data { Link Here
125
125
126
    while ( my $reserve = $reserves->next() ) {
126
    while ( my $reserve = $reserves->next() ) {
127
127
128
        my $row = {
128
my $row = {
129
            title          => $reserve->biblio()->title(),
129
    title          => $reserve->biblio()->title(),
130
	    author         => $reserve->biblio()->author(),
130
    author         => $reserve->biblio()->author(),
131
	    reservedate    => $reserve->reservedate(),
131
    reservedate    => $reserve->reservedate(),
132
	    expirationdate => $reserve->expirationdate(),
132
    expirationdate => $reserve->expirationdate(),
133
	    waiting_at     => $reserve->branch()->branchname(),
133
    waiting_at     => $reserve->branch()->branchname(),
134
	};
134
    };
135
135
136
        push( @{$return}, $row );
136
        push( @{$return}, $row );
137
    }
137
    }
138
- 

Return to bug 10468