1 [% INCLUDE 'doc-head-open.inc' %]
2 <title>Koha › Patrons › Purchase suggestions for [% INCLUDE 'patron-title.inc' %]</title>
3 <link rel="stylesheet" type="text/css" href="[% themelang %]/css/datatables.css" />
4 [% INCLUDE 'doc-head-close.inc' %]
5 [% INCLUDE 'datatables.inc' %]
6 <script type="text/javascript">
7 $(document).ready(function() {
8 $("#suggestions").dataTable($.extend(true, {}, dataTablesDefaults, {
19 [% INCLUDE 'header.inc' %]
20 [% INCLUDE 'patron-search.inc' %]
22 <div id="breadcrumbs">
23 <a href="/cgi-bin/koha/mainpage.pl">Home</a>
24 › <a href="/cgi-bin/koha/members/members-home.pl">Patrons</a>
25 › Purchase suggestions for [% INCLUDE 'patron-title.inc' %]
28 <div id="doc3" class="yui-t1">
34 <h2>Purchase suggestions</h2>
37 <a class="btn" id="newsuggestion" href="/cgi-bin/koha/suggestion/suggestion.pl?op=add&suggestedby=[% borrowernumber %]&redirect=purchase_suggestions&borrowernumber=[% borrowernumber %]"><i class="icon-plus"></i> New purchase suggestion</a>
41 <table id="suggestions">
52 [% FOREACH s IN suggestions %]
57 [% IF ( CAN_user_catalogue ) %]
58 <a href="/cgi-bin/koha/suggestion/suggestion.pl?suggestionid=[% s.suggestionid %]&op=show">[% s.title |html %]</a>
65 [% IF ( s.author ) %][% s.author %],[% END %]
66 [% IF ( s.copyrightdate ) %] - [% s.copyrightdate %],[% END %]
67 [% IF ( s.publishercode ) %] - [% s.publishercode %][% END %]
68 [% IF ( s.place ) %]([% s.place %])[% END %]
69 [% IF ( s.collectiontitle ) %] , [% s.collectiontitle %][% END %]
70 [% IF ( s.itemtype ) %] - [% s.itemtype %][% END %]
75 [% IF ( s.surnamemanagedby ) %]
76 [% s.surnamemanagedby %]
77 [% IF ( s.firstnamemanagedby ) %],[% END %]
78 [% s.firstnamemanagedby %]
84 [% IF ( s.ASKED ) %]Requested[% END %]
85 [% IF ( s.CHECKED ) %]Checked by the library[% END %]
86 [% IF ( s.ACCEPTED ) %]Accepted by the library[% END %]
87 [% IF ( s.ORDERED ) %]Ordered by the library[% END %]
88 [% IF ( s.REJECTED ) %]Suggestion declined [% END %]
89 [% IF ( s.AVAILABLE ) %]Available in the library[% END %]
90 [% IF ( s.reason ) %]([% s.reason %])[% END %]
97 There is no purchase suggestion for this patron.
103 [% INCLUDE 'circ-menu.inc' %]
106 [% INCLUDE 'intranet-bottom.inc' %]