[% USE Koha %]
[% USE Branches %]
[% USE KohaDates %]
[% USE Price %]
[% USE ItemTypes %]
[% USE TablesSettings %]
[% PROCESS 'member-display-address-style.inc' %]
[% SET footerjs = 1 %]
[% PROCESS 'accounts.inc' %]
[% INCLUDE 'doc-head-open.inc' %]
[% PROCESS 'display-address-style' %]
- [% IF ( patron.phone ) %][% patron.phone | html %][% ELSE %](no phone number on file)[% END %]
- [% IF ( patron.email ) %][% patron.email | html %][% ELSE %](no primary email on file)[% END %]
[% IF ( patron.emailpro ) %]
- [% patron.emailpro | html %]
[% END %]
- Registration date: [% patron.dateenrolled | $KohaDates %]
- Expiration date: [% patron.dateexpiry | $KohaDates %]
- Library: [% Branches.GetName( patron.branchcode ) | html %]
- Category: [% patron.category.description | html %]
[% IF ( issues ) %]
Items checked out
Title |
Author |
Call number |
Item type |
Date due |
Barcode |
Inventory number |
Charge |
Price |
Status |
[% FOREACH issue IN issues %]
[% INCLUDE 'biblio-title.inc' biblio=issue link = 0 %]
|
[% issue.author | html %] |
[% issue.itemcallnumber | html %] |
[% ItemTypes.GetDescription( issue.itype ) | html %] |
[% issue.date_due | $KohaDates as_due_date => 1 %] |
[% issue.barcode | html %] |
[% issue.stocknumber | html %] |
[% IF ( issue.charge <= 0 ) %]
[% ELSE %]
|
[% END %]
[% issue.charge | $Price %]
|
[% IF ( issue.replacementprice <= 0 ) %]
[% ELSE %]
|
[% END %]
[% issue.replacementprice | $Price %]
|
[% IF ( issue.overdue ) %]Overdue![% ELSE %] [% END %] |
[% END %]
|
|
|
|
|
|
Totals: |
[% IF ( totaldue <= 0 ) %]
[% ELSE %]
|
[% END %]
[% totaldue | $Price %]
|
[% IF ( totalprice <= 0 ) %]
[% ELSE %]
|
[% END %]
[% totalprice | $Price %]
|
|
[% END %]
[% IF ( reserves ) %]
Pending holds
Title |
Author |
Placed on |
Expires on |
Pick up location |
[% FOREACH reserve IN reserves %]
[% reserve.title | html %] |
[% reserve.author | html %] |
[% reserve.reservedate | $KohaDates %] |
[% reserve.expirationdate | $KohaDates %] |
[% reserve.waiting_at | html %] |
[% END %]
[% END %]
[% IF accounts && totaldue != 0 %]
Account fines and payments
Date |
Description of charges |
Note |
Amount |
Outstanding |
[% FOREACH account IN accounts %]
[% account.date | $KohaDates %] |
[% PROCESS account_type_description account=account %]
[%- IF account.payment_type %]
, [% AuthorisedValues.GetByCode('PAYMENT_TYPE', account.payment_type) | html %]
[% END %]
[%- IF account.description %]
, [% account.description | html %]
[% END %]
[% IF ( account.itemnumber AND account.debit_type_code != 'OVERDUE' ) %]
[% account.item.biblio.title | html %]
[% END %]
|
[% account.note | html_line_break %]
|
[% IF ( account.amount <= 0 ) %]
[% ELSE %]
|
[% END %]
[% account.amount | $Price %]
|
[% IF ( account.amountoutstanding <= 0 ) %]
[% ELSE %]
|
[% END %]
[% account.amountoutstanding | $Price %]
|
[% END %]
|
|
|
[% IF ( totaldue < 0 ) %]
[% ELSE %]
|
[% END %]
Total due:
|
[% IF ( totaldue < 0 ) %]
[% ELSE %]
|
[% END %]
[% totaldue | $Price %]
|
[% END %]
[% MACRO jsinclude BLOCK %]
[% INCLUDE 'slip-print.inc' #printThenClose %]
[% INCLUDE 'datatables.inc' %]
[% INCLUDE 'columns_settings.inc' %]
[% END %]
[% INCLUDE 'intranet-bottom.inc' %]