Bug 15758: Koha::Libraries - Remove GetBranchName
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / suggestion / suggestion.tt
1 [% USE Branches %]
2 [% USE AuthorisedValues %]
3 [% USE KohaDates %]
4 [% USE Price %]
5 [% INCLUDE 'doc-head-open.inc' %]
6 <title>Koha &rsaquo; Acquisitions  &rsaquo;
7     [% IF ( op_save ) %]
8         [% IF ( suggestionid ) %]
9             Suggestions &rsaquo;  Edit suggestion #[% suggestionid %]
10         [% ELSE %]
11             Suggestions &rsaquo; Add suggestion
12         [% END %]
13     [% ELSIF ( op == 'show' ) %]
14            Suggestions &rsaquo; Show suggestion #[% suggestionid %]
15     [% ELSE %]
16         Suggestions management
17     [% END %]
18 </title>
19 [% INCLUDE 'doc-head-close.inc' %]
20 [% INCLUDE 'calendar.inc' %]
21 [% IF ( op == 'show' ) %]
22 <script type="text/javascript">
23     // <![CDATA[
24     $(document).ready(function(){
25         $("#deletesuggestion").on("click",function(){
26             return confirm(_("Are you sure you want to delete this suggestion?"));
27         });
28     });
29     // ]]>
30 </script>
31 [% END %]
32 [% IF ( op_else ) %]
33 <link rel="stylesheet" type="text/css" href="[% interface %]/[% theme %]/css/datatables.css" />
34 [% INCLUDE 'datatables.inc' %]
35 <script type="text/javascript" src="[% interface %]/lib/jquery/plugins/jquery.checkboxes.min.js"></script>
36 <script type="text/javascript">
37 // <![CDATA[
38 /**
39 *  displayOther.
40 *  This function display the select or an textaera to write a reason.
41 */
42 function displayOther(id,show,hide){
43         $("#"+hide+id).hide();
44         $("#"+show+id).show();
45 }
46 $(document).ready(function() {
47     $('#suggestiontabs').tabs({
48         // Correct table sizing for tables hidden in tabs
49         // http://www.datatables.net/examples/api/tabs_and_scrolling.html
50         "activate": function(event, ui) {
51             $( $.fn.dataTable.tables( true ) ).DataTable().columns.adjust();
52         }
53     });
54     $(".sorted").dataTable($.extend(true, {}, dataTablesDefaults, {
55         "aoColumnDefs": [
56             { "aTargets": [ 0 ], "bSortable": false, "bSearchable": false },
57             { "sType": "anti-the", "aTargets" : [ "anti-the" ] }
58         ],
59         "sPaginationType": "four_button"
60     }));
61 [% FOREACH suggestion IN suggestions %]
62 // functions for [% suggestion.suggestiontype %] interactions
63     $("#CheckAll[% suggestion.suggestiontype %]").click(function(e){
64                 $("#[% suggestion.suggestiontype %]t").checkCheckboxes();
65         e.preventDefault();
66     });
67     $("#UncheckAll[% suggestion.suggestiontype %]").click(function(e){
68                 $("#[% suggestion.suggestiontype %]t").unCheckCheckboxes();
69         e.preventDefault();
70         });
71         $("#other_reason[% suggestion.suggestiontype %]").hide();
72     $("#reason[% suggestion.suggestiontype %]").change(function(){
73             if($(this).val() == "other"){
74                         $(this).hide();
75                         $("#other_reason[% suggestion.suggestiontype %]").show();
76     }
77     });
78         $("#[% suggestion.suggestiontype %]delete").change(function(){
79                 if(this.checked){
80                         $("form[name='f[% suggestion.suggestiontype %]'] input[name=op]").attr("value","delete");
81                 } else {
82                         $("form[name='f[% suggestion.suggestiontype %]'] input[name=op]").attr("value","change");
83                 }
84         });
85
86 [% END %]
87     $("a[href*=back]").click(function(){
88     var sid = $(this).attr("href").replace(/#back/,"");
89             $("#reason"+sid).show().find("option[value='']").attr("selected","selected");
90                 $("#other_reason"+sid).hide();
91     });
92     $("h4.local_collapse a").click(function(){
93         $(this).parent().parent().find("ol").toggle();
94         return false;
95     });
96     // http://jqueryui.com/demos/datepicker/#date-range
97     var dates = $( "#suggesteddate_from, #suggesteddate_to" ).datepicker({
98         changeMonth: true,
99         numberOfMonths: 1,
100         onSelect: function( selectedDate ) {
101             var option = this.id == "suggesteddate_from" ? "minDate" : "maxDate",
102                 instance = $( this ).data( "datepicker" );
103                 date = $.datepicker.parseDate(
104                     instance.settings.dateFormat ||
105                     $.datepicker._defaults.dateFormat,
106                     selectedDate, instance.settings );
107             dates.not( this ).datepicker( "option", option, date );
108         }
109     });
110     var datesMD = $( "#manageddate_from, #manageddate_to" ).datepicker({
111         changeMonth: true,
112         numberOfMonths: 1,
113         onSelect: function( selectedDate ) {
114             var option = this.id == "manageddate_from" ? "minDate" : "maxDate",
115                 instance = $( this ).data( "datepicker" );
116                 date = $.datepicker.parseDate(
117                     instance.settings.dateFormat ||
118                     $.datepicker._defaults.dateFormat,
119                     selectedDate, instance.settings );
120             datesMD.not( this ).datepicker( "option", option, date );
121         }
122     });
123     var datesAD = $( "#accepteddate_from, #accepteddate_to" ).datepicker({
124         changeMonth: true,
125         numberOfMonths: 1,
126         onSelect: function( selectedDate ) {
127             var option = this.id == "accepteddate_from" ? "minDate" : "maxDate",
128                 instance = $( this ).data( "datepicker" );
129                 date = $.datepicker.parseDate(
130                     instance.settings.dateFormat ||
131                     $.datepicker._defaults.dateFormat,
132                     selectedDate, instance.settings );
133             datesAD.not( this ).datepicker( "option", option, date );
134         }
135     });
136
137     $("form.update_suggestions").on("submit", function(e){
138         var form = this;
139         var action_delete_selected = $(this).find("input[value='delete']").is(":checked");
140         if ( action_delete_selected ) {
141             var suggestions_to_delete = $(this).find("input[name='edit_field']:checked");
142             if ( suggestions_to_delete.length == 0 ) {
143                 alert(_("Please select at least one suggestion to delete"));
144                 e.preventDefault();
145                 return false;
146             } else if ( suggestions_to_delete.length == 1 ) {
147                 if ( ! confirm(_("Are you sure you want to delete this suggestion?")) ) {
148                     e.preventDefault();
149                     return false;
150                 }
151             } else if ( suggestions_to_delete.length > 1 ) {
152                 if ( ! confirm(_("Are you sure you want to delete these suggestions?")) ) {
153                     e.preventDefault();
154                     return false;
155                 }
156             }
157         }
158         return true;
159     });
160 });
161 // ]]>
162 </script>
163 <style type="text/css">
164 h4.local_collapse a { font-size : 80%; text-decoration: none; } fieldset.brief ol { display : none; }
165 .overlay { top: 180px; left: 50%; position: absolute; margin-left: -100px; width: 200px; text-align: center; display: none; margin-top: -10px; background: #eeffd4; padding: .5em; color: #000; } .note { -moz-border-radius: 3px; border-radius:3px; background: transparent url("[% interface %]/[% theme %]/img/famfamfam/silk/comment.png") top left no-repeat; padding : 1px 3px 1px 18px; font-size : 90%; }
166 </style>[% END %]
167 [% IF ( op_save )  %]
168     <script type="text/javascript">
169         // <![CDATA[
170         $(document).ready(function() { calcNewsuggTotal(); });
171         // ]]>
172     </script>
173 [% END %]
174 <script type="text/javascript" src="[% interface %]/[% theme %]/js/acq.js"></script>
175 </head>
176 <body id="acq_suggestion" class="acq">
177 [% INCLUDE 'header.inc' %]
178 [% INCLUDE 'cat-search.inc' %]
179 <div id="breadcrumbs">
180     <a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; <a href="/cgi-bin/koha/acqui/acqui-home.pl">Acquisitions</a> &rsaquo;
181     [% IF ( op_save ) %]
182         [% IF ( suggestionid ) %]
183             <a href="/cgi-bin/koha/suggestion/suggestion.pl">Suggestions</a> &rsaquo;  Edit suggestion #[% suggestionid %]
184         [% ELSE %]
185             <a href="/cgi-bin/koha/suggestion/suggestion.pl">Suggestions</a> &rsaquo; Add suggestion
186         [% END %]
187     [% ELSIF ( op == 'show' ) %]
188            <a href="/cgi-bin/koha/suggestion/suggestion.pl">Suggestions</a> &rsaquo; Show suggestion #[% suggestionid %]
189     [% ELSE %]
190         Suggestions management
191     [% END %]
192 </div>
193
194 [% IF ( op == 'show' ) %]
195 <div id="doc" class="yui-t7"> <!-- <div id="doc3" class="yui-t2"> -->
196 <div id="bd">
197     <div id="yui-main">
198     <div class="yui-b">
199
200     <div id="toolbar" class="btn-toolbar">
201         <a class="btn btn-small" id="editsuggestion" href="suggestion.pl?op=edit&amp;suggestionid=[% suggestionid %]"><i class="fa fa-pencil"></i> Edit</a>
202         <a class="btn btn-small" id="deletesuggestion" href="suggestion.pl?op=delete&amp;edit_field=[% suggestionid %]"><i class="fa fa-trash"></i> Delete</a>
203     </div>
204
205     <fieldset class="rows">
206       <legend>Bibliographic information</legend>
207       <ol>
208         <li><span class="label">Title:</span>[% title |html %]</li>
209         <li><span class="label">Author:</span>[% author |html %]</li>
210         <li><span class="label">Copyright date:</span>[% copyrightdate |html %]</li>
211         <li><span class="label">ISBN or ISSN or other standard number:</span>[% isbn |html %]</li>
212         <li><span class="label">Publisher:</span>[% publishercode |html %]</li>
213         <li><span class="label">Publication place:</span>[% place |html %]</li>
214         <li><span class="label">Collection title:</span>[% collectiontitle |html %]</li>
215         <li><span class="label">Document type:</span>
216             [% AuthorisedValues.GetByCode( 'SUGGEST_FORMAT', itemtype, 0 ) %]
217         </li>
218         [% IF ( patron_reason_loop ) %]
219           <li><span class="label">Reason for suggestion: </span>
220             [% FOREACH patron_reason_loo IN patron_reason_loop %]
221               [% IF patron_reason_loo.authorised_value == patronreason %][% patron_reason_loo.lib %][% END %]
222             [% END %]
223           </li>
224         [% END %]
225         <li><span class="label">Notes:</span>[% note |html %]</li>
226       </ol>
227     </fieldset>
228     <fieldset class="rows"> <legend>Suggestion management</legend>
229       <ol>
230         <li>
231           <span class="label">Status:</span>
232           [% SET status_found = 0 %]
233           [% IF ( STATUS == 'ASKED' ) %]
234               Pending
235               [% SET status_found = 1 %]
236           [% ELSIF ( STATUS == 'ACCEPTED' ) %]
237               Accepted
238               [% SET status_found = 1 %]
239           [% ELSIF ( STATUS == 'CHECKED' ) %]
240               Checked
241               [% SET status_found = 1 %]
242           [% ELSIF ( STATUS == 'REJECTED' ) %]
243               Rejected
244               [% SET status_found = 1 %]
245           [% ELSE %]
246               [% FOREACH s IN SuggestionStatuses %]
247                   [% IF STATUS == s.authorised_value %]
248                       [% s.lib %]
249                       [% SET status_found = 1 %]
250                   [% END %]
251               [% END %]
252           [% END %]
253
254         </li>
255         <li>
256           <table>
257             <thead><tr><th>&nbsp;</th><th>Date</th><th>By</th></tr></thead>
258             <tbody>
259             <tr>
260                 <th><span class="label">Suggestion creation</span> </th>
261                 <td>[% suggesteddate | $KohaDates %]</td>
262                 <td>[% IF ( suggestedby_borrowernumber ) %]<a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% suggestedby_borrowernumber %]">[% suggestedby_surname %], [% suggestedby_firstname %]</a>  [% Branches.GetName( suggestedby_branchcode ) %] ([% suggestedby_description %])[% END %]
263                 </td>
264             </tr>
265             <tr>
266                 <th><span class="label">Suggestion management</span> </th>
267                 <td>[% manageddate | $KohaDates %]</td>
268                 <td>[% IF ( managedby_borrowernumber ) %]<a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% managedby_borrowernumber %]">[% managedby_surname %], [% managedby_firstname %]</a> [% Branches.GetName( managedby_branchcode ) %] ([% managedby_description %])[% END %]</td>
269             </tr>
270             <tr>
271                 <th><span class="label">Suggestion accepted</span> </th>
272                 <td>[% accepteddate | $KohaDates %]</td>
273                 <td>[% IF ( acceptedby_borrowernumber ) %]<a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% acceptedby_borrowernumber %]">[% acceptedby_surname %], [% acceptedby_firstname %]</a> [% Branches.GetName( acceptedby_branchcode ) %] ([% acceptedby_description %])[% END %]</td>
274             </tr>
275             </tbody>
276         </table></li></ol>
277     </fieldset>
278     <fieldset class="rows"> <legend>Acquisition information</legend>
279       <ol>
280         <li>
281           <span class="label">Library:</span> [% Branches.GetName( branchcode ) %]
282         </li>
283         <li>
284           <span class="label">Fund:</span> [% budgetname %]
285         </li>
286         <li>
287           <span class="label">Copies:</span>[% quantity %]
288         </li>
289         <li>
290           <span class="label">Currency:</span>[% currency %]
291         </li>
292         <li>
293           <span class="label">Price:</span>[% price | $Price %]
294         </li>
295         <li>
296           <span class="label">Total</span>[% total | $Price %]
297         </li>
298       </ol>
299     </fieldset>
300
301     <fieldset class="action">
302         <a href="suggestion.pl">&lt;&lt; Back to suggestions</a>
303     </fieldset>
304
305     </div>
306     </div>
307 </div>
308 [% ELSE %]
309
310 [% IF ( op_save ) %]<div id="doc" class="yui-t7">[% ELSE %]<div id="doc3" class="yui-t2">[% END %]
311 <div id="bd">
312     <div id="yui-main">
313     <div class="yui-b">
314 [% IF ( op_save ) %]
315     <form id="add_edit" action="suggestion.pl" method="post" class="validated">
316     <input type="hidden" name="redirect" id="redirect" value="[% redirect %]" />
317     <input type="hidden" name="borrowernumber" id="borrowernumber" value="[% borrowernumber %]" />
318     [% IF ( suggestionid ) %]
319         <h1>Edit purchase suggestion #[% suggestionid %]</h1>
320         <input type="hidden" name="suggestionid" value="[% suggestionid %]"/>
321     [% ELSE %]
322         <h1>Enter a new purchase suggestion</h1>
323     [% END %]
324     <fieldset class="rows"> <legend>Bibliographic information</legend><ol>
325         <li>
326             <label for="title" class="required">Title:</label>
327             <input type="text" id="title" name="title" size="80" maxlength="255" value="[% title |html %]" required="required" class="required" />
328             <span class="required">Required</span>
329         </li>
330         <li><label for="author">Author:</label><input type="text" id="author" name="author" size="50" maxlength="80" value="[% author | html %]"/></li>
331         <li><label for="copyrightdate">Copyright date:</label><input type="text" id="copyrightdate" name="copyrightdate" size="4" maxlength="4" value="[% copyrightdate | html %]" /></li>
332         <li><label for="isbn">ISBN or ISSN or other standard number:</label><input type="text" id="isbn" name="isbn" size="50" maxlength="80" value="[% isbn | html %]"/></li>
333         <li><label for="publishercode">Publisher:</label><input type="text" id="publishercode" name="publishercode" size="50" maxlength="80" value="[% publishercode | html %]"/></li>
334         <li><label for="place">Publication place:</label><input type="text" id="place" name="place" size="50" maxlength="80" value="[% place | html %]"/></li>
335         <li><label for="collectiontitle">Collection title:</label><input type="text" id="collectiontitle" name="collectiontitle" size="50" maxlength="80" value="[% collectiontitle | html %]"/></li>
336         <li><label for="itemtype">Document type:</label>
337             [% PROCESS 'av-build-dropbox.inc' name="itemtype", category="SUGGEST_FORMAT", size = 20, default=itemtype %]
338         </li>
339         [% IF patron_reason_loop %]
340             <li>
341                 <label for="patronreason">Reason for suggestion: </label>
342                 <select name="patronreason" id="patronreason">
343                     <option value=""> -- Choose -- </option>
344                     [% FOREACH patron_reason_loo IN patron_reason_loop %]
345                         [% IF patron_reason_loo.authorised_value == patronreason %]
346                             <option value="[% patron_reason_loo.authorised_value %]" selected="selected">[% patron_reason_loo.lib %]</option>
347                         [% ELSE %]
348                             <option value="[% patron_reason_loo.authorised_value %]">[% patron_reason_loo.lib %]</option>
349                         [% END %]
350                     [% END %]
351                 </select>
352             </li>
353         [% END %]
354         <li><label for="note">Notes:</label><textarea name="note" id="note" rows="5" cols="40">[% note %]</textarea></li>
355         </ol>
356     </fieldset>
357     <fieldset class="rows"> <legend>Suggestion management</legend>
358        <ol>
359             [% IF ( suggestionid ) %]
360                 <li>
361                     <label for="STATUS">Status:</label>
362                     <select id="STATUS" name="STATUS">
363                         <option value="">No Status</option>
364
365                         [% IF (statusselected_ASKED ) %]
366                             <option value="ASKED" selected="selected">Pending</option>
367                         [% ELSE %]
368                             <option value="ASKED">Pending</option>
369                         [% END %]
370
371                         [% IF (statusselected_ACCEPTED ) %]
372                             <option value="ACCEPTED" selected="selected">Accepted</option>
373                         [% ELSE %]
374                             <option value="ACCEPTED">Accepted</option>
375                         [% END %]
376
377                         [% IF (statusselected_CHECKED ) %]
378                             <option value="CHECKED" selected="selected">Checked</option>
379                         [% ELSE %]
380                             <option value="CHECKED">Checked</option>
381                         [% END %]
382
383                         [% IF ( statusselected_REJECTED ) %]
384                             <option value="REJECTED" selected="selected">Rejected</option>
385                         [% ELSE %]
386                             <option value="REJECTED">Rejected</option>
387                         [% END %]
388
389                         [% FOREACH s IN SuggestionStatuses %]
390                             [% IF s.authorised_value == selected_status %]
391                                 <option value="[% s.authorised_value %]" selected="selected">[% s.lib %]</option>
392                             [% ELSE %]
393                                 <option value="[% s.authorised_value %]">[% s.lib %]</option>
394                             [% END %]
395                         [% END %]
396                     </select>
397                 </li>
398             [% END %]
399         <li><table>
400             <thead><tr><th>&nbsp;</th><th>Date</th><th>By</th></tr></thead>
401             <tbody>
402             <tr>
403                 <th><label for="suggesteddate">Suggestion creation</label> </th>
404                 <td><input type="text" id="suggesteddate" name="suggesteddate" size="10" maxlength="10" value="[% suggesteddate | $KohaDates %]"/></td>
405                 <td><input type="hidden" id="suggestedby" name="suggestedby" value="[% suggestedby %]"/>[% IF ( suggestedby_borrowernumber ) %]<a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% suggestedby_borrowernumber %]">[% suggestedby_surname %], [% suggestedby_firstname %]</a>  [% Branches.GetName( suggestedby_branchcode ) %] ([% suggestedby_description %])[% END %]
406                 </td>
407             </tr>
408             <tr>
409                 <th><label for="managedon">Suggestion management</label> </th>
410                 <td><input type="text" id="managedon" name="manageddate" size="10" maxlength="10" value="[% manageddate | $KohaDates %]" /></td>
411                 <td><input type="hidden" id="managedby" name="managedby" value="[% managedby %]"/>[% IF ( managedby_borrowernumber ) %]<a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% managedby_borrowernumber %]">[% managedby_surname %], [% managedby_firstname %]</a> [% Branches.GetName( managedby_branchcode ) %] ([% managedby_description %])[% END %]</td>
412             </tr>
413             <tr>
414                 <th><label for="accepteddate">Suggestion accepted</label> </th>
415                 <td><input type="text" id="accepteddate" name="accepteddate" size="10" maxlength="10" value="[% accepteddate | $KohaDates %]" /></td>
416                 <td><input type="hidden" id="acceptedby" name="acceptedby" value="[% acceptedby %]"/>[% IF ( acceptedby_borrowernumber ) %]<a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% acceptedby_borrowernumber %]">[% acceptedby_surname %], [% acceptedby_firstname %]</a> [% Branches.GetName( acceptedby_branchcode ) %] ([% acceptedby_description %])[% END %]</td>
417             </tr>
418             </tbody>
419         </table></li></ol>
420     </fieldset>
421     <fieldset class="rows"> <legend>Acquisition information</legend><ol>
422         <li><label for="branchcode">Library:</label>
423             <select name="branchcode" id="branchcode">
424                 <option value="">Any</option>[% FOREACH branchloo IN branchloop %]
425                 [% IF ( branchloo.selected ) %]<option value="[% branchloo.value %]" selected="selected">[% branchloo.branchname %]</option>[% ELSE %]<option value="[% branchloo.value %]">[% branchloo.branchname %]</option>[% END %][% END %]
426             </select>
427         </li>
428         <li><label for="budgetid">Fund:</label>
429             <select name="budgetid" id="budgetid">
430                 <option value="">Any</option>[% FOREACH budgetsloo IN budgetsloop %]
431                 [% IF ( budgetsloo.selected ) %]<option value="[% budgetsloo.budget_id %]" selected="selected">[% budgetsloo.budget_name %]</option>[% ELSE %]<option value="[% budgetsloo.budget_id %]">[% budgetsloo.budget_name %]</option>[% END %][% END %]
432             </select>
433                 </li><li><label for="quantity">Copies:</label>
434                         <input type="text" size="10" id="quantity" name="quantity" value="[% quantity %]" onchange="calcNewsuggTotal();" />
435                 </li>
436                 <li>
437                     <label for="currency">Currency:</label>
438                     [% FOREACH c IN currencies %]
439                         <input type="hidden" value="[% c.rate %]" id="currency_rate_[% c.currency %]" name="currency_rate_[% c.currency %]" />
440                         <input type="hidden" id="[% c.currency %]" name="[% c.currency %]" value="[% c.rate %]" />
441                     [% END %]
442
443                     <select name="currency" id="currency" onchange="calcNewsuggTotal();">
444                         [% FOREACH c IN currencies %]
445                             [% IF suggestionid and suggestion.currency == c.currency or not suggestionid and c.active %]
446                                 <option value="[% c.currency %]" selected="selected">[% c.currency %]</option>
447                             [% ELSIF not c.archived %]
448                                 <option value="[% c.currency %]">[% c.currency %]</option>
449                             [% END %]
450                         [% END %]
451                     </select>
452                 </li>
453                 <li><label for="price">Price:</label>
454                         <input type="text" size="20" name="price" id="price" value="[% price %]" onchange="calcNewsuggTotal();" />
455                 </li><li><label for="total">Total: </label>
456                         <input type="text" readonly="readonly" id="total" name="total" size="10" value="[% total %]"/>
457                 </li></ol>
458     </fieldset><input type="hidden" id="returnsuggested" name="returnsuggested" value="[% IF ( returnsuggestedby ) %][% returnsuggestedby %][% ELSE %]noone[% END %]"/>
459     <fieldset class="action"><input type="hidden" name="op" value="[% op %]" />[% IF ( suggestionid ) %]<input type="submit" value="Save" /> <a class="cancel" href="[% IF ( returnsuggestedby ) %]/cgi-bin/koha/members/moremember.pl?borrowernumber=[% returnsuggestedby %]#suggestions[% ELSE %]suggestion.pl[% END %]">Cancel</a>[% ELSE %]<input type="submit" value="Submit your suggestion" /> <a class="cancel" href="suggestion.pl">Cancel</a>[% END %]
460     </fieldset>
461     </form>
462 [% END %]
463
464 [% IF ( op_else ) %]
465 <div id="toolbar" class="btn-toolbar">
466     <a class="btn btn-small" id="newsuggestion" href="suggestion.pl?op=add"><i class="fa fa-plus"></i> New purchase suggestion</a>
467 </div>
468
469 <h1>Suggestions management</h1>
470
471
472 [% FOR m IN messages %]
473     <div class="dialog [% m.type %]">
474         [% SWITCH m.code %]
475         [% CASE 'already_exists' %]
476             The suggestion has not been added. A suggestion with this title already exists (<a href='/cgi-bin/koha/suggestion/suggestion.pl?suggestionid=[% m.id %]&op=show'>suggestion #[% m.id %]</a>)
477         [% CASE %]
478             [% m.code %]
479         [% END %]
480     </div>
481 [% END %]
482
483 [% UNLESS ( notabs ) %]
484     <div id="suggestiontabs" class="toptabs">
485     <ul class="ui-tabs-nav">
486         [% FOREACH suggestion IN suggestions %]
487                 <li>
488             <a href="#[% suggestion.suggestiontype %]">
489             [% IF ( suggestion.suggestiontypelabel ) %]
490                 [% IF (suggestion.suggestiontypelabel == "Pending") %]Pending
491                 [% ELSIF (suggestion.suggestiontypelabel == "Accepted") %]Accepted
492                 [% ELSIF (suggestion.suggestiontypelabel == "Checked") %]Checked
493                 [% ELSIF (suggestion.suggestiontypelabel == "Rejected") %]Rejected
494                 [% ELSIF (suggestion.suggestiontypelabel == "Available") %]Available
495                 [% ELSIF (suggestion.suggestiontypelabel == "Ordered") %]Ordered
496                 [% ELSIF (suggestion.suggestiontypelabel == "Unknown") %]Status unknown
497                 [% ELSE %][% suggestion.suggestiontypelabel %][% END %]
498             [% ELSE %]
499                 [% IF ( suggestion.suggestiontype ) %]
500                     [% AuthorisedValues.GetByCode( 'SUGGEST_STATUS', suggestion.suggestiontype ) %]
501                 [% ELSE %]
502                     No name
503                 [% END %]
504             [% END %]
505             ([% suggestion.suggestions_loop.size %])</a></li>
506
507         [% END %]
508     </ul>
509 [% END %]
510
511 [% FOREACH suggestion IN suggestions %]
512 <div id="[% suggestion.suggestiontype %]">
513 <form class="update_suggestions" name="f[% suggestion.suggestiontype %]" method="post" action="/cgi-bin/koha/suggestion/suggestion.pl#[% suggestion.suggestiontype %]">
514
515 [% IF ( suggestion.suggestions_loop ) %]
516 <p><a id="CheckAll[% suggestion.suggestiontype %]" href="#">Check all</a> | <a id="UncheckAll[% suggestion.suggestiontype %]" href="#">Uncheck all</a></p>
517     <table id="[% suggestion.suggestiontype %]t" class="sorted">
518         <thead>
519             <tr><th>&nbsp;</th>
520             <th>No.</th>
521             <th class="anti-the">Suggestion</th>
522             <th>Suggested by - on</th>
523             <th>Managed by - on</th>
524             <th>Library</th>
525             <th>Fund</th>
526             <th>Status</th></tr>
527     </thead>
528         <tbody>
529             [% FOREACH suggestions_loo IN suggestion.suggestions_loop %]
530                 <tr>
531                 <td>
532                     <input type="checkbox" name="edit_field" value="[% suggestions_loo.suggestionid %]" />
533                 </td>
534                 <td>
535                     [% suggestions_loo.suggestionid %]
536                 </td>
537                 <td>
538                     <a href="suggestion.pl?suggestionid=[% suggestions_loo.suggestionid %]&amp;op=show" title="suggestion" >
539                         [% suggestions_loo.title |html %][% IF ( suggestions_loo.author ) %], by [% suggestions_loo.author %][% END %]</a>
540                     [<a href="suggestion.pl?suggestionid=[% suggestions_loo.suggestionid %]&amp;op=edit" title="suggestion" >edit</a>]
541                     <br />
542                     [% IF ( suggestions_loo.copyrightdate ) %]&copy; [% suggestions_loo.copyrightdate |html %] [% END %]
543                         [% IF ( suggestions_loo.volumedesc ) %]; Volume:<i>[% suggestions_loo.volumedesc |html %]</i> [% END %]
544                         [% IF ( suggestions_loo.isbn ) %]; ISBN:<i>[% suggestions_loo.isbn |html %]</i> [% END %][% IF ( suggestions_loo.publishercode ) %]; Published by [% suggestions_loo.publishercode |html %] [% END %][% IF ( suggestions_loo.publicationyear ) %] in <i>[% suggestions_loo.publicationyear |html %]</i> [% END %][% IF ( suggestions_loo.place ) %] in <i>[% suggestions_loo.place |html %]</i> [% END %][% IF ( suggestions_loo.collectiontitle ) %]; [% suggestions_loo.collectiontitle |html %] [% END %][% IF ( suggestions_loo.itemtype ) %]; [% AuthorisedValues.GetByCode( 'SUGGEST_FORMAT', suggestions_loo.itemtype, 0 ) %] [% END %]<br />[% IF ( suggestions_loo.note ) %]<span class="note">[% suggestions_loo.note |html%]</span>[% END %]
545                 </td>
546                 <td>
547                     [% IF ( suggestions_loo.emailsuggestedby ) %]<a href="mailto:[% suggestions_loo.emailsuggestedby %]">[% END %][% suggestions_loo.surnamesuggestedby %][% IF ( suggestions_loo.firstnamesuggestedby ) %], [% suggestions_loo.firstnamesuggestedby %][% END %] [% IF (suggestions_loo.cardnumbersuggestedby ) %]([% suggestions_loo.cardnumbersuggestedby %])[% END %] [% IF ( suggestions_loo.emailsuggestedby ) %]</a>[% END %]
548                     [% IF ( suggestions_loo.suggesteddate ) %] - [% suggestions_loo.suggesteddate | $KohaDates %][% END %]
549                 </td>
550                 <td>
551                     [% IF ( suggestions_loo.emailmanagedby ) %]<a href="mailto:[% suggestions_loo.emailmanagedby %]">[% END %][% suggestions_loo.surnamemanagedby %][% IF ( suggestions_loo.firstnamemanagedby ) %], [% suggestions_loo.firstnamemanagedby %][% END %] [% IF ( suggestions_loo.emailmanagedby ) %]</a>[% END %]
552                     [% IF ( suggestions_loo.manageddate ) %] - [% suggestions_loo.manageddate | $KohaDates %][% END %]
553                 </td>
554                 <td>
555                     [% Branches.GetName( suggestions_loo.branchcode ) %]
556                 </td>
557                 <td>
558                     [% suggestions_loo.budget_name %]
559                 </td>
560                 <td>
561                     [% IF ( suggestions_loo.ASKED ) %]
562                         Pending
563                     [% ELSIF ( suggestions_loo.ACCEPTED ) %]
564                         Accepted
565                     [% ELSIF ( suggestions_loo.ORDERED ) %]
566                         Ordered
567                     [% ELSIF ( suggestions_loo.REJECTED ) %]
568                         Rejected
569                     [% ELSIF ( suggestions_loo.CHECKED ) %]
570                         Checked
571                     [% ELSIF AuthorisedValues.GetByCode( 'SUGGEST_STATUS', suggestions_loo.STATUS ) %]
572                         [% AuthorisedValues.GetByCode( 'SUGGEST_STATUS', suggestions_loo.STATUS ) %]
573                     [% ELSE %]
574                         Status unknown
575                     [% END %]
576
577                     [% IF ( suggestions_loo.reason ) %]
578                         <br />([% suggestions_loo.reason %])
579                     [% END %]
580                 </td>
581         </tr>
582         [% END %]</tbody>
583         </table>  <fieldset>
584     <div id="select-reason[% suggestion.suggestiontype %]">
585         <div id="status[% suggestion.suggestiontype %]">
586             <label for="STATUS[% suggestion.suggestiontype %]">Mark selected as: </label>
587             <select name="STATUS" id="STATUS[% suggestion.suggestiontype %]">
588                 <option value=""> -- Choose a status --</option>
589
590                 [% IF (statusselected_ASKED ) %]
591                     <option value="ASKED" selected="selected">Pending</option>
592                 [% ELSE %]
593                     <option value="ASKED">Pending</option>
594                 [% END %]
595
596                 [% IF (statusselected_ACCEPTED ) %]
597                     <option value="ACCEPTED" selected="selected">Accepted</option>
598                 [% ELSE %]
599                     <option value="ACCEPTED">Accepted</option>
600                 [% END %]
601
602                 [% IF (statusselected_CHECKED ) %]
603                     <option value="CHECKED" selected="selected">Checked</option>
604                 [% ELSE %]
605                     <option value="CHECKED">Checked</option>
606                 [% END %]
607
608                 [% IF ( statusselected_REJECTED ) %]
609                     <option value="REJECTED" selected="selected">Rejected</option>
610                 [% ELSE %]
611                     <option value="REJECTED">Rejected</option>
612                 [% END %]
613
614                 [% FOREACH s IN SuggestionStatuses %]
615                     <option value="[% s.authorised_value %]">[% s.lib %]</option>
616                 [% END %]
617             </select>
618
619             <label for="reason[% suggestion.suggestiontype %]">with this reason:</label>
620             <select id="reason[% suggestion.suggestiontype %]" name="reason[% suggestion.suggestiontype %]">
621                 <option value=""> -- Choose a reason -- </option>
622                 [% FOREACH reasonsloo IN suggestion.reasonsloop %]
623                     <option value="[% reasonsloo.lib %]">[% reasonsloo.lib %]</option>
624                 [% END %]
625                 <option value="other">Others...</option>
626             </select>
627
628             <span id="other_reason[% suggestion.suggestiontype %]">
629                 <input type="text" size="31" id="select-other_reason[% suggestion.suggestiontype %]" name="other_reason[% suggestion.suggestiontype %]" placeholder="please note your reason here..." />
630                 <a href="#back[% suggestion.suggestiontype %]">Cancel</a>
631             </span>
632
633             <strong style="padding: 0 1em;">OR:</strong>
634
635             <label for="[% suggestion.suggestiontype %]delete">Delete selected</label>
636             <input type="checkbox" name="op" id="[% suggestion.suggestiontype %]delete" />
637         </div>
638     </div>
639
640     <input type="hidden" name="branchcode" value="[% branchfilter %]" />
641     <input type="hidden" name="tabcode" value="[% suggestion.suggestiontype %]" />
642     <input type="hidden" name="op" value="change" />
643 </fieldset>
644         <fieldset class="action">
645     <input type="submit" value="Submit" /></fieldset>
646 </form>
647 [% ELSE %]
648     <b>No results.</b>
649 [% END %]
650 </div>
651 [% END %]
652     </div>
653 [% END %]
654 </div>
655 </div>
656
657       [% UNLESS ( op_save ) %] [% UNLESS ( op == 'show' ) %]<div class="yui-b">
658 <form name="suggestionfilter" action="suggestion.pl" method="get">
659 <fieldset class="brief"><ol style="display:block;"><li><label for="displayby">Organize by: </label>
660                 <select name="displayby" id="displayby" style="width:auto;">
661                     [% IF ( displayby == "STATUS" ) %]
662                         <option value="STATUS" selected="selected">Status</option>
663                     [% ELSE %]
664                         <option value="STATUS">Status</option>
665                     [% END %]
666                     [% IF ( displayby == "branchcode" ) %]
667                         <option value="branchcode" selected="selected">Library</option>
668                     [% ELSE %]
669                         <option value="branchcode">Library</option>
670                     [% END %]
671                     [% IF ( displayby == "itemtype" ) %]
672                         <option value="itemtype" selected="selected">Item type</option>
673                     [% ELSE %]
674                         <option value="itemtype">Item type</option>
675                     [% END %]
676                     [% IF ( displayby == "managedby" ) %]
677                         <option value="managedby" selected="selected">Managed by</option>
678                     [% ELSE %]
679                         <option value="managedby">Managed by</option>
680                     [% END %]
681                     [% IF ( displayby == "acceptedby" ) %]
682                         <option value="acceptedby" selected="selected">Accepted by</option>
683                     [% ELSE %]
684                         <option value="acceptedby">Accepted by</option>
685                     [% END %]
686                 </select> <input type="submit" value="Go" /></li></ol></fieldset>
687 <h4>Filter by: <a style="font-size:80%;font-weight:normal;" href="/cgi-bin/koha/suggestion/suggestion.pl">[clear]</a></h4>
688                 <div style="display:block;" id="limits">
689
690                                 <fieldset class="brief"><h4 class="local_collapse"><a href="#">Bibliographic information</a></h4>
691                    <ol> <li><label for="title"> Title:</label><input type="text" id="title" name="title" value="[% title |html %]" /></li>
692                     <li><label for="author"> Author:</label><input type="text" id="author" name="author" value="[% author | html %]" /></li>
693                     <li><label for="isbn"> ISBN:</label><input type="text" id="isbn"  name="isbn" value="[% isbn | html %]" /></li>
694                     <li><label for="publishercode"> Publisher:</label><input type="text" id="publishercode" name="publishercode" value="[% publishercode | html %]" /></li>
695                     <li><label for="copyrightdate_filter"> Copyright date:</label><input type="text" id="copyrightdate_filter" name="copyrightdate" value="[% copyrightdate | html %]" /></li>
696                     <li><label for="collectiontitle"> Collection title:</label><input type="text" id="collectiontitle" name="collectiontitle" value="[% collectiontitle | html %]" /></li><li><input type="submit" value="Go" /></li></ol>
697                 </fieldset>
698                                  <fieldset class="brief"><h4 class="local_collapse"><a href="#">Suggestion information</a></h4>
699                     <ol>
700                       <li>
701                           <label for="STATUS"> Status:</label>
702                           <select name="STATUS" id="STATUS">
703                               <option value="">Any</option>
704
705                               [% IF (statusselected_ASKED ) %]
706                                   <option value="ASKED" selected="selected">Pending</option>
707                               [% ELSE %]
708                                   <option value="ASKED">Pending</option>
709                               [% END %]
710
711                               [% IF (statusselected_ACCEPTED ) %]
712                                   <option value="ACCEPTED" selected="selected">Accepted</option>
713                               [% ELSE %]
714                                   <option value="ACCEPTED">Accepted</option>
715                               [% END %]
716
717                               [% IF (statusselected_CHECKED ) %]
718                                   <option value="CHECKED" selected="selected">Checked</option>
719                               [% ELSE %]
720                                   <option value="CHECKED">Checked</option>
721                               [% END %]
722
723                               [% IF ( statusselected_REJECTED ) %]
724                                   <option value="REJECTED" selected="selected">Rejected</option>
725                               [% ELSE %]
726                                   <option value="REJECTED">Rejected</option>
727                               [% END %]
728
729                               [% FOREACH s IN SuggestionStatuses %]
730                                   [% IF s.authorised_value == selected_status %]
731                                       <option value="[% s.authorised_value %]" selected="selected">[% s.lib %]</option>
732                                   [% ELSE %]
733                                       <option value="[% s.authorised_value %]">[% s.lib %]</option>
734                                   [% END %]
735                               [% END %]
736                           </select>
737                       </li>
738
739                     <li><label for="suggestedby"> Suggested by:</label><select id="suggestedby" name="suggestedby"><option value="">Any</option>
740 [% FOREACH suggestedby_loo IN suggestedby_loop %][% IF ( suggestedby_loo.selected ) %]<option value="[% suggestedby_loo.code %]" selected="selected">[% suggestedby_loo.desc %]</option>[% ELSE %]<option value="[% suggestedby_loo.code %]">[% suggestedby_loo.desc %]</option>[% END %][% END %]
741                                                                      </select></li>
742                     <li>
743                         <label for="suggesteddate_from">Suggested date from:</label>
744                         <input type="text" id="suggesteddate_from" size="10" name="suggesteddate_from" value="[% suggesteddate_from %]" />
745                     </li>
746                     <li>
747                         <label for="suggesteddate_to">To:</label>
748                         <input type="text" id="suggesteddate_to" size="10" name="suggesteddate_to" value="[% suggesteddate_to %]" />
749                     </li>
750                     <li><label for="managedby"> Managed by:</label><select id="managedby" name="managedby"><option value="">Any</option>
751 [% FOREACH managedby_loo IN managedby_loop %][% IF ( managedby_loo.selected ) %]<option value="[% managedby_loo.code %]" selected="selected">[% managedby_loo.desc %]</option>[% ELSE %]<option value="[% managedby_loo.code %]">[% managedby_loo.desc %]</option>[% END %][% END %]
752                                                                      </select></li>
753                     <li>
754                         <label for="manageddate_from">Management date from:</label>
755                         <input type="text" id="manageddate_from" size="10" name="manageddate_from" value="[% manageddate_from %]" />
756                     </li>
757                     <li>
758                         <label for="manageddate_to">To:</label>
759                         <input type="text" id="manageddate_to" size="10" name="manageddate_to" value="[% manageddate_to %]" />
760                     </li>
761                     <li><label for="acceptedby"> Accepted by:</label><select id="acceptedby" name="acceptedby"><option value="">Any</option>
762 [% FOREACH acceptedby_loo IN acceptedby_loop %][% IF ( acceptedby_loo.selected ) %] <option value="[% acceptedby_loo.code %]" selected="selected">[% acceptedby_loo.desc %]</option>[% ELSE %]<option value="[% acceptedby_loo.code %]">[% acceptedby_loo.desc %]</option>[% END %][% END %]
763                                                       </select></li>
764                     <li>
765                         <label for="accepteddate_from">Accepted date from:</label>
766                         <input type="text" id="accepteddate_from" size="10" name="accepteddate_from" value="[% accepteddate_from %]" />
767                     </li>
768                     <li>
769                         <label for="accepteddate_to">To:</label>
770                         <input type="text" id="accepteddate_to" size="10" name="accepteddate_to" value="[% accepteddate_to %]" />
771                     </li>
772                     <li><input type="submit" value="Go" /></li></ol>
773                 </fieldset>
774
775                                 <fieldset class="brief"><h4 class="local_collapse"><a href="#">Acquisition information</a></h4>
776                     <ol><li><label for="budgetid"> Book fund:</label>
777                     <select name="budgetid" id="budgetid">
778                       <option value="__ANY__">Any</option>
779                       [% IF budgetid == '__NONE__' %]
780                           <option value="__NONE__" selected="selected">None</option>
781                       [% ELSE %]
782                           <option value="__NONE__">None</option>
783                       [% END %]
784                     [% FOREACH budgetid_loo IN budgetid_loop %]
785                         [% IF ( budgetid_loo.selected ) %] <option value="[% budgetid_loo.code %]" selected="selected">[% budgetid_loo.desc %]</option>[% ELSE %]<option value="[% budgetid_loo.code %]">[% budgetid_loo.desc %]</option>[% END %]
786                         [% END %]
787                     </select></li>
788                     <li><label for="branchcode">Library:</label>
789                     <select name="branchcode" id="branchcode">
790                         <option value="__ANY__">Any</option>[% FOREACH branchloo IN branchloop %]
791                             [% IF ( branchloo.selected ) %] <option value="[% branchloo.value %]" selected="selected">[% branchloo.branchname %]</option>[% ELSE %] <option value="[% branchloo.value %]">[% branchloo.branchname %]</option>[% END %]
792                             [% END %]
793                     </select></li><li><input type="submit" value="Go" /></li></ol>
794                 </fieldset>
795     </div>
796             </form>
797         </div>
798     [% END %]
799     [% END %]
800 </div>
801 [% END %]
802 [% INCLUDE 'intranet-bottom.inc' %]
803