5 [% INCLUDE 'doc-head-open.inc' %]
6 <title>Summary for [% firstname %] [% surname %] ([% cardnumber %])</title>
7 [% INCLUDE 'doc-head-close.inc' %]
8 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
9 <link rel="shortcut icon" href="[% IF ( IntranetFavicon ) %][% IntranetFavicon %][% ELSE %][% interface %]/[% theme %]/img/favicon.ico[% END %]" type="image/x-icon" />
10 <link rel="stylesheet" type="text/css" href="[% interface %]/[% theme %]/css/print.css" />
11 [% INCLUDE 'slip-print.inc' #printThenClose %]
13 <body id="pat_moremember-print" class="pat" onload="printThenClose();">
15 <h3><a href="/cgi-bin/koha/circ/circulation.pl?findborrower=[% cardnumber %]">Account summary: [% firstname %] [% surname %] ([% cardnumber %])</a></h3>
18 [% IF Koha.Preference( 'AddressFormat' ) %]
19 [% INCLUDE "member-display-address-style-${ Koha.Preference( 'AddressFormat' ) }.inc" %]
21 [% INCLUDE 'member-display-address-style-us.inc' %]
23 <li>[% IF ( phone ) %][% phone %][% ELSE %](no phone number on file)[% END %]</li>
24 <li>[% IF ( email ) %][% email %][% ELSE %](no primary email on file)[% END %]</li>
26 <li>[% emailpro %]</li>
28 <li>Registration date: [% dateenrolled | $KohaDates %]</li>
29 <li>Expiration date: [% dateexpiry | $KohaDates %]</li>
30 <li>Library: [% Branches.GetName( branchcode ) %]</li>
31 <li>Category: [% description %]</li>
36 <caption>Items checked out</caption>
49 [% FOREACH issue IN issues %]
50 [% IF ( issue.overdue ) %]<tr class="overdue">[% ELSE %]<tr>[% END %]
52 [% issue.title |html %]
53 <a href="/cgi-bin/koha/catalogue/detail.pl?item=[% issue.itemnumber %]&biblionumber=[% issue.biblionumber %]&bi=[% issue.biblioitemnumber %]"></a>
55 <td>[% issue.author %]</td>
56 <td>[% issue.itemcallnumber %]</td>
57 <td>[% issue.itemtype_description %]</td>
58 <td>[% issue.date_due | $KohaDates as_due_date => 1 %]</td>
59 <td>[% issue.barcode %]</td>
60 <td>[% issue.charge %]</td>
61 <td>[% issue.replacementprice %]</td>
62 <td>[% IF ( issue.overdue ) %]Overdue![% ELSE %] [% END %]</td>
67 <td colspan="6" style="text-align: right; font-weight:bold;">Totals:</td>
68 <td>[% totaldue %]</td>
69 <td>[% totalprice %]</td>
70 <td colspan="3"> </td>
77 <caption>Pending holds</caption>
83 <th>Pick up location</th>
86 [% FOREACH reserve IN reserves %]
88 <td>[% reserve.title %]</td>
89 <td>[% reserve.author %]</td>
90 <td>[% reserve.reservedate | $KohaDates %]</td>
91 <td>[% reserve.expirationdate | $KohaDates %]</td>
92 <td>[% reserve.waiting_at %]</td>
97 [% IF accounts && totaldue != 0 %]
99 <caption>Account fines and payments</caption>
101 <th>Description of charges</th>
107 [% FOREACH account IN accounts %]
108 [% NEXT IF account.amountoutstanding == 0 %]
111 [% IF ( account.itemnumber ) %]<a href="/cgi-bin/koha/catalogue/moredetail.pl?biblionumber=[% account.biblionumber %]&itemnumber=[% account.itemnumber %]">[% END %]
112 [% account.description %] [% IF ( account.printtitle ) %] [% account.title |html %][% END %]
113 [% IF ( account.itemnumber ) %]</a>[% END %]
115 <td>[% account.date | $KohaDates %]</td>
116 <td style="text-align:right;">[% account.amount | $Price %]</td>
117 <td style="text-align:right;">[% account.amountoutstanding | $Price %]</td>
123 <td colspan="3">Total due</td>
124 <td colspan="2" style="text-align:right;">[% totaldue | $Price %]</td>
130 [% INCLUDE 'intranet-bottom.inc' %]