Bug 15084: Replace C4::Budgets::GetCurrencies with Koha::Acquisition::Currencies...
[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="[% themelang %]/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="[% themelang %]/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-remove"></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.selected ) %][% 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> [% branchname %]
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 ) %]<li><label for="patronreason">Reason for suggestion: </label><select name="patronreason" id="patronreason"><option value=""> -- Choose -- </option>[% FOREACH patron_reason_loo IN patron_reason_loop %]
340                 [% IF ( patron_reason_loo.selected ) %]<option value="[% patron_reason_loo.authorised_value %]" selected="selected">[% patron_reason_loo.lib %]</option>[% ELSE %]<option value="[% patron_reason_loo.authorised_value %]">[% patron_reason_loo.lib %]</option>[% END %]
341            [% END %]</select></li>[% END %]
342         <li><label for="note">Notes:</label><textarea name="note" id="note" rows="5" cols="40">[% note %]</textarea></li>
343         </ol>
344     </fieldset>
345     <fieldset class="rows"> <legend>Suggestion management</legend>
346        <ol>
347             [% IF ( suggestionid ) %]
348                 <li>
349                     <label for="STATUS">Status:</label>
350                     <select id="STATUS" name="STATUS">
351                         <option value="">No Status</option>
352
353                         [% IF (statusselected_ASKED ) %]
354                             <option value="ASKED" selected="selected">Pending</option>
355                         [% ELSE %]
356                             <option value="ASKED">Pending</option>
357                         [% END %]
358
359                         [% IF (statusselected_ACCEPTED ) %]
360                             <option value="ACCEPTED" selected="selected">Accepted</option>
361                         [% ELSE %]
362                             <option value="ACCEPTED">Accepted</option>
363                         [% END %]
364
365                         [% IF (statusselected_CHECKED ) %]
366                             <option value="CHECKED" selected="selected">Checked</option>
367                         [% ELSE %]
368                             <option value="CHECKED">Checked</option>
369                         [% END %]
370
371                         [% IF ( statusselected_REJECTED ) %]
372                             <option value="REJECTED" selected="selected">Rejected</option>
373                         [% ELSE %]
374                             <option value="REJECTED">Rejected</option>
375                         [% END %]
376
377                         [% FOREACH s IN SuggestionStatuses %]
378                             [% IF s.authorised_value == selected_status %]
379                                 <option value="[% s.authorised_value %]" selected="selected">[% s.lib %]</option>
380                             [% ELSE %]
381                                 <option value="[% s.authorised_value %]">[% s.lib %]</option>
382                             [% END %]
383                         [% END %]
384                     </select>
385                 </li>
386             [% END %]
387         <li><table>
388             <thead><tr><th>&nbsp;</th><th>Date</th><th>By</th></tr></thead>
389             <tbody>
390             <tr>
391                 <th><label for="suggesteddate">Suggestion creation</label> </th>
392                 <td><input type="text" id="suggesteddate" name="suggesteddate" size="10" maxlength="10" value="[% suggesteddate | $KohaDates %]"/></td>
393                 <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 %]
394                 </td>
395             </tr>
396             <tr>
397                 <th><label for="managedon">Suggestion management</label> </th>
398                 <td><input type="text" id="managedon" name="manageddate" size="10" maxlength="10" value="[% manageddate | $KohaDates %]" /></td>
399                 <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>
400             </tr>
401             <tr>
402                 <th><label for="accepteddate">Suggestion accepted</label> </th>
403                 <td><input type="text" id="accepteddate" name="accepteddate" size="10" maxlength="10" value="[% accepteddate | $KohaDates %]" /></td>
404                 <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>
405             </tr>
406             </tbody>
407         </table></li></ol>
408     </fieldset>
409     <fieldset class="rows"> <legend>Acquisition information</legend><ol>
410         <li><label for="branchcode">Library:</label>
411             <select name="branchcode" id="branchcode">
412                 <option value="">Any</option>[% FOREACH branchloo IN branchloop %]
413                 [% IF ( branchloo.selected ) %]<option value="[% branchloo.value %]" selected="selected">[% branchloo.branchname %]</option>[% ELSE %]<option value="[% branchloo.value %]">[% branchloo.branchname %]</option>[% END %][% END %]
414             </select>
415         </li>
416         <li><label for="budgetid">Fund:</label>
417             <select name="budgetid" id="budgetid">
418                 <option value="">Any</option>[% FOREACH budgetsloo IN budgetsloop %]
419                 [% 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 %]
420             </select>
421                 </li><li><label for="quantity">Copies:</label>
422                         <input type="text" size="10" id="quantity" name="quantity" value="[% quantity %]" onchange="calcNewsuggTotal();" />
423                 </li>
424                 <li>
425                     <label for="currency">Currency:</label>
426                     [% FOREACH c IN currencies %]
427                         <input type="hidden" value="[% c.rate %]" id="currency_rate_[% c.currency %]" name="currency_rate_[% c.currency %]" />
428                         <input type="hidden" id="[% c.currency %]" name="[% c.currency %]" value="[% c.rate %]" />
429                     [% END %]
430
431                     <select name="currency" id="currency" onchange="calcNewsuggTotal();">
432                         [% FOREACH c IN currencies %]
433                             [% IF suggestionid and suggestion.currency == c.currency or not suggestionid and c.active %]
434                                 <option value="[% c.currency %]" selected="selected">[% c.currency %]</option>
435                             [% ELSIF not c.archived %]
436                                 <option value="[% c.currency %]">[% c.currency %]</option>
437                             [% END %]
438                         [% END %]
439                     </select>
440                 </li>
441                 <li><label for="price">Price:</label>
442                         <input type="text" size="20" name="price" id="price" value="[% price %]" onchange="calcNewsuggTotal();" />
443                 </li><li><label for="total">Total: </label>
444                         <input type="text" readonly="readonly" id="total" name="total" size="10" value="[% total %]"/>
445                 </li></ol>
446     </fieldset><input type="hidden" id="returnsuggested" name="returnsuggested" value="[% IF ( returnsuggestedby ) %][% returnsuggestedby %][% ELSE %]noone[% END %]"/>
447     <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 %]
448     </fieldset>
449     </form>
450 [% END %]
451
452 [% IF ( op_else ) %]
453 <div id="toolbar" class="btn-toolbar">
454     <a class="btn btn-small" id="newsuggestion" href="suggestion.pl?op=add"><i class="fa fa-plus"></i> New purchase suggestion</a>
455 </div>
456
457 <h1>Suggestions management</h1>
458
459
460 [% FOR m IN messages %]
461     <div class="dialog [% m.type %]">
462         [% SWITCH m.code %]
463         [% CASE 'already_exists' %]
464             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>)
465         [% CASE %]
466             [% m.code %]
467         [% END %]
468     </div>
469 [% END %]
470
471 [% UNLESS ( notabs ) %]
472     <div id="suggestiontabs" class="toptabs">
473     <ul class="ui-tabs-nav">
474         [% FOREACH suggestion IN suggestions %]
475                 <li>
476             <a href="#[% suggestion.suggestiontype %]">
477             [% IF ( suggestion.suggestiontypelabel ) %]
478                 [% IF (suggestion.suggestiontypelabel == "Pending") %]Pending
479                 [% ELSIF (suggestion.suggestiontypelabel == "Accepted") %]Accepted
480                 [% ELSIF (suggestion.suggestiontypelabel == "Checked") %]Checked
481                 [% ELSIF (suggestion.suggestiontypelabel == "Rejected") %]Rejected
482                 [% ELSIF (suggestion.suggestiontypelabel == "Available") %]Available
483                 [% ELSIF (suggestion.suggestiontypelabel == "Ordered") %]Ordered
484                 [% ELSE %][% suggestion.suggestiontypelabel %][% END %]
485             [% ELSE %]
486                 [% IF ( suggestion.suggestiontype ) %]
487                     [% AuthorisedValues.GetByCode( 'SUGGEST_STATUS', suggestion.suggestiontype ) %]
488                 [% ELSE %]
489                     No name
490                 [% END %]
491             [% END %]
492             ([% suggestion.suggestions_loop.size %])</a></li>
493
494         [% END %]
495     </ul>
496 [% END %]
497
498 [% FOREACH suggestion IN suggestions %]
499 <div id="[% suggestion.suggestiontype %]">
500 <form class="update_suggestions" name="f[% suggestion.suggestiontype %]" method="post" action="/cgi-bin/koha/suggestion/suggestion.pl#[% suggestion.suggestiontype %]">
501
502 [% IF ( suggestion.suggestions_loop ) %]
503 <p><a id="CheckAll[% suggestion.suggestiontype %]" href="#">Check all</a> | <a id="UncheckAll[% suggestion.suggestiontype %]" href="#">Uncheck all</a></p>
504     <table id="[% suggestion.suggestiontype %]t" class="sorted">
505         <thead>
506             <tr><th>&nbsp;</th>
507             <th>No.</th>
508             <th class="anti-the">Suggestion</th>
509             <th>Suggested by - on</th>
510             <th>Managed by - on</th>
511             <th>Library</th>
512             <th>Fund</th>
513             <th>Status</th></tr>
514     </thead>
515         <tbody>
516             [% FOREACH suggestions_loo IN suggestion.suggestions_loop %]
517                 <tr>
518                 <td>
519                     <input type="checkbox" name="edit_field" value="[% suggestions_loo.suggestionid %]" />
520                 </td>
521                 <td>
522                     [% suggestions_loo.suggestionid %]
523                 </td>
524                 <td>
525                     <a href="suggestion.pl?suggestionid=[% suggestions_loo.suggestionid %]&amp;op=show" title="suggestion" >
526                         [% suggestions_loo.title |html %][% IF ( suggestions_loo.author ) %], by [% suggestions_loo.author %][% END %]</a>
527                     [<a href="suggestion.pl?suggestionid=[% suggestions_loo.suggestionid %]&amp;op=edit" title="suggestion" >edit</a>]
528                     <br />
529                     [% IF ( suggestions_loo.copyrightdate ) %]&copy; [% suggestions_loo.copyrightdate |html %] [% END %]
530                         [% IF ( suggestions_loo.volumedesc ) %]; Volume:<i>[% suggestions_loo.volumedesc |html %]</i> [% END %]
531                         [% 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 %]
532                 </td>
533                 <td>
534                     [% 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 %]
535                     [% IF ( suggestions_loo.suggesteddate ) %] - [% suggestions_loo.suggesteddate | $KohaDates %][% END %]
536                 </td>
537                 <td>
538                     [% 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 %]
539                     [% IF ( suggestions_loo.manageddate ) %] - [% suggestions_loo.manageddate | $KohaDates %][% END %]
540                 </td>
541                 <td>
542                     [% Branches.GetName( suggestions_loo.branchcode ) %]
543                 </td>
544                 <td>
545                     [% suggestions_loo.budget_name %]
546                 </td>
547                 <td>
548                     [% IF ( suggestions_loo.ASKED ) %]
549                         Pending
550                     [% ELSIF ( suggestions_loo.ACCEPTED ) %]
551                         Accepted
552                     [% ELSIF ( suggestions_loo.ORDERED ) %]
553                         Ordered
554                     [% ELSIF ( suggestions_loo.REJECTED ) %]
555                         Rejected
556                     [% ELSIF ( suggestions_loo.CHECKED ) %]
557                         Checked
558                     [% ELSIF AuthorisedValues.GetByCode( 'SUGGEST_STATUS', suggestions_loo.STATUS ) %]
559                         [% AuthorisedValues.GetByCode( 'SUGGEST_STATUS', suggestions_loo.STATUS ) %]
560                     [% END %]
561
562                     [% IF ( suggestions_loo.reason ) %]
563                         <br />([% suggestions_loo.reason %])
564                     [% END %]
565                 </td>
566         </tr>
567         [% END %]</tbody>
568         </table>  <fieldset>
569     <div id="select-reason[% suggestion.suggestiontype %]">
570         <div id="status[% suggestion.suggestiontype %]">
571             <label for="STATUS[% suggestion.suggestiontype %]">Mark selected as: </label>
572             <select name="STATUS" id="STATUS[% suggestion.suggestiontype %]">
573                 <option value=""> -- Choose a status --</option>
574
575                 [% IF (statusselected_ASKED ) %]
576                     <option value="ASKED" selected="selected">Pending</option>
577                 [% ELSE %]
578                     <option value="ASKED">Pending</option>
579                 [% END %]
580
581                 [% IF (statusselected_ACCEPTED ) %]
582                     <option value="ACCEPTED" selected="selected">Accepted</option>
583                 [% ELSE %]
584                     <option value="ACCEPTED">Accepted</option>
585                 [% END %]
586
587                 [% IF (statusselected_CHECKED ) %]
588                     <option value="CHECKED" selected="selected">Checked</option>
589                 [% ELSE %]
590                     <option value="CHECKED">Checked</option>
591                 [% END %]
592
593                 [% IF ( statusselected_REJECTED ) %]
594                     <option value="REJECTED" selected="selected">Rejected</option>
595                 [% ELSE %]
596                     <option value="REJECTED">Rejected</option>
597                 [% END %]
598
599                 [% FOREACH s IN SuggestionStatuses %]
600                     <option value="[% s.authorised_value %]">[% s.lib %]</option>
601                 [% END %]
602             </select>
603
604             <label for="reason[% suggestion.suggestiontype %]">with this reason:</label>
605             <select id="reason[% suggestion.suggestiontype %]" name="reason[% suggestion.suggestiontype %]">
606                 <option value=""> -- Choose a reason -- </option>
607                 [% FOREACH reasonsloo IN suggestion.reasonsloop %]
608                     <option value="[% reasonsloo.lib %]">[% reasonsloo.lib %]</option>
609                 [% END %]
610                 <option value="other">Others...</option>
611             </select>
612
613             <span id="other_reason[% suggestion.suggestiontype %]">
614                 <input type="text" size="31" id="select-other_reason[% suggestion.suggestiontype %]" name="other_reason[% suggestion.suggestiontype %]" placeholder="please note your reason here..." />
615                 <a href="#back[% suggestion.suggestiontype %]">Cancel</a>
616             </span>
617
618             <strong style="padding: 0 1em;">OR:</strong>
619
620             <label for="[% suggestion.suggestiontype %]delete">Delete selected</label>
621             <input type="checkbox" name="op" id="[% suggestion.suggestiontype %]delete" />
622         </div>
623     </div>
624
625
626     <input type="hidden" name="tabcode" value="[% suggestion.suggestiontype %]" />
627     <input type="hidden" name="op" value="change" />
628 </fieldset>
629         <fieldset class="action">
630     <input type="submit" value="Submit" /></fieldset>
631 </form>
632 [% ELSE %]
633     <b>No results.</b>
634 [% END %]
635 </div>
636 [% END %]
637     </div>
638 [% END %]
639 </div>
640 </div>
641
642       [% UNLESS ( op_save ) %] [% UNLESS ( op == 'show' ) %]<div class="yui-b">
643 <form name="suggestionfilter" action="suggestion.pl" method="get">
644 <fieldset class="brief"><ol style="display:block;"><li><label for="displayby">Organize by: </label>
645                 <select name="displayby" id="displayby" style="width:auto;">
646                     [% IF ( displayby == "STATUS" ) %]
647                         <option value="STATUS" selected="selected">Status</option>
648                     [% ELSE %]
649                         <option value="STATUS">Status</option>
650                     [% END %]
651                     [% IF ( displayby == "branchcode" ) %]
652                         <option value="branchcode" selected="selected">Library</option>
653                     [% ELSE %]
654                         <option value="branchcode">Library</option>
655                     [% END %]
656                     [% IF ( displayby == "itemtype" ) %]
657                         <option value="itemtype" selected="selected">Item type</option>
658                     [% ELSE %]
659                         <option value="itemtype">Item type</option>
660                     [% END %]
661                     [% IF ( displayby == "managedby" ) %]
662                         <option value="managedby" selected="selected">Managed by</option>
663                     [% ELSE %]
664                         <option value="managedby">Managed by</option>
665                     [% END %]
666                     [% IF ( displayby == "acceptedby" ) %]
667                         <option value="acceptedby" selected="selected">Accepted by</option>
668                     [% ELSE %]
669                         <option value="acceptedby">Accepted by</option>
670                     [% END %]
671                 </select> <input type="submit" value="Go" /></li></ol></fieldset>
672 <h4>Filter by: <a style="font-size:80%;font-weight:normal;" href="/cgi-bin/koha/suggestion/suggestion.pl">[clear]</a></h4>
673                 <div style="display:block;" id="limits">
674
675                                 <fieldset class="brief"><h4 class="local_collapse"><a href="#">Bibliographic information</a></h4>
676                    <ol> <li><label for="title"> Title:</label><input type="text" id="title" name="title" value="[% title |html %]" /></li>
677                     <li><label for="author"> Author:</label><input type="text" id="author" name="author" value="[% author | html %]" /></li>
678                     <li><label for="isbn"> ISBN:</label><input type="text" id="isbn"  name="isbn" value="[% isbn | html %]" /></li>
679                     <li><label for="publishercode"> Publisher:</label><input type="text" id="publishercode" name="publishercode" value="[% publishercode | html %]" /></li>
680                     <li><label for="copyrightdate_filter"> Copyright date:</label><input type="text" id="copyrightdate_filter" name="copyrightdate" value="[% copyrightdate | html %]" /></li>
681                     <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>
682                 </fieldset>
683                                  <fieldset class="brief"><h4 class="local_collapse"><a href="#">Suggestion information</a></h4>
684                     <ol>
685                       <li>
686                           <label for="STATUS"> Status:</label>
687                           <select name="STATUS" id="STATUS">
688                               <option value="">Any</option>
689
690                               [% IF (statusselected_ASKED ) %]
691                                   <option value="ASKED" selected="selected">Pending</option>
692                               [% ELSE %]
693                                   <option value="ASKED">Pending</option>
694                               [% END %]
695
696                               [% IF (statusselected_ACCEPTED ) %]
697                                   <option value="ACCEPTED" selected="selected">Accepted</option>
698                               [% ELSE %]
699                                   <option value="ACCEPTED">Accepted</option>
700                               [% END %]
701
702                               [% IF (statusselected_CHECKED ) %]
703                                   <option value="CHECKED" selected="selected">Checked</option>
704                               [% ELSE %]
705                                   <option value="CHECKED">Checked</option>
706                               [% END %]
707
708                               [% IF ( statusselected_REJECTED ) %]
709                                   <option value="REJECTED" selected="selected">Rejected</option>
710                               [% ELSE %]
711                                   <option value="REJECTED">Rejected</option>
712                               [% END %]
713
714                               [% FOREACH s IN SuggestionStatuses %]
715                                   [% IF s.authorised_value == selected_status %]
716                                       <option value="[% s.authorised_value %]" selected="selected">[% s.lib %]</option>
717                                   [% ELSE %]
718                                       <option value="[% s.authorised_value %]">[% s.lib %]</option>
719                                   [% END %]
720                               [% END %]
721                           </select>
722                       </li>
723
724                     <li><label for="suggestedby"> Suggested by:</label><select id="suggestedby" name="suggestedby"><option value="">Any</option>
725 [% 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 %]
726                                                                      </select></li>
727                     <li>
728                         <label for="suggesteddate_from">Suggested date from:</label>
729                         <input type="text" id="suggesteddate_from" size="10" name="suggesteddate_from" value="[% suggesteddate_from %]" />
730                     </li>
731                     <li>
732                         <label for="suggesteddate_to">To:</label>
733                         <input type="text" id="suggesteddate_to" size="10" name="suggesteddate_to" value="[% suggesteddate_to %]" />
734                     </li>
735                     <li><label for="managedby"> Managed by:</label><select id="managedby" name="managedby"><option value="">Any</option>
736 [% 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 %]
737                                                                      </select></li>
738                     <li>
739                         <label for="manageddate_from">Management date from:</label>
740                         <input type="text" id="manageddate_from" size="10" name="manageddate_from" value="[% manageddate_from %]" />
741                     </li>
742                     <li>
743                         <label for="manageddate_to">To:</label>
744                         <input type="text" id="manageddate_to" size="10" name="manageddate_to" value="[% manageddate_to %]" />
745                     </li>
746                     <li><label for="acceptedby"> Accepted by:</label><select id="acceptedby" name="acceptedby"><option value="">Any</option>
747 [% 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 %]
748                                                       </select></li>
749                     <li>
750                         <label for="accepteddate_from">Accepted date from:</label>
751                         <input type="text" id="accepteddate_from" size="10" name="accepteddate_from" value="[% accepteddate_from %]" />
752                     </li>
753                     <li>
754                         <label for="accepteddate_to">To:</label>
755                         <input type="text" id="accepteddate_to" size="10" name="accepteddate_to" value="[% accepteddate_to %]" />
756                     </li>
757                     <li><input type="submit" value="Go" /></li></ol>
758                 </fieldset>
759
760                                 <fieldset class="brief"><h4 class="local_collapse"><a href="#">Acquisition information</a></h4>
761                     <ol><li><label for="budgetid"> Book fund:</label>
762                     <select name="budgetid" id="budgetid">
763                       <option value="__ANY__">Any</option>
764                       [% IF budgetid == '__NONE__' %]
765                           <option value="__NONE__" selected="selected">None</option>
766                       [% ELSE %]
767                           <option value="__NONE__">None</option>
768                       [% END %]
769                     [% FOREACH budgetid_loo IN budgetid_loop %]
770                         [% 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 %]
771                         [% END %]
772                     </select></li>
773                     <li><label for="branchcode"> For:</label>
774                     <select name="branchcode" id="branchcode">
775                         <option value="__ANY__">Any</option>[% FOREACH branchloo IN branchloop %]
776                             [% IF ( branchloo.selected ) %] <option value="[% branchloo.value %]" selected="selected">[% branchloo.branchname %]</option>[% ELSE %] <option value="[% branchloo.value %]">[% branchloo.branchname %]</option>[% END %]
777                             [% END %]
778                     </select></li><li><input type="submit" value="Go" /></li></ol>
779                 </fieldset>
780     </div>
781             </form>
782         </div>
783     [% END %]
784     [% END %]
785 </div>
786 [% END %]
787 [% INCLUDE 'intranet-bottom.inc' %]
788