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