Bug 23590: Batch update manager for suggestions
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / suggestion / suggestion.tt
1 [% PROCESS 'i18n.inc' %]
2 [% USE raw %]
3 [% USE Asset %]
4 [% USE Branches %]
5 [% USE AuthorisedValues %]
6 [% USE KohaDates %]
7 [% USE Price %]
8 [% USE ColumnsSettings %]
9 [% SET footerjs = 1 %]
10 [% INCLUDE 'doc-head-open.inc' %]
11 <title>Koha &rsaquo; Acquisitions  &rsaquo;
12     [% IF op == 'save' %]
13         [% IF ( suggestionid ) %]
14             Suggestions &rsaquo;  Edit suggestion #[% suggestionid | html %]
15         [% ELSE %]
16             Suggestions &rsaquo; Add suggestion
17         [% END %]
18     [% ELSIF ( op == 'show' ) %]
19            Suggestions &rsaquo; Show suggestion #[% suggestionid | html %]
20     [% ELSE %]
21         Suggestions management
22     [% END %]
23 </title>
24 [% INCLUDE 'doc-head-close.inc' %]
25 [% IF op == 'else' %]
26     <style>
27         h4.local_collapse a { font-size : 80%; text-decoration: none; } fieldset.brief ol { display : none; }
28         .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; } div.note { background: transparent none; border-style: dotted; border-width: 1px 0 0 0; font-size : 90%; padding: 2px 0 0 0; } div.note i { color: #CCC; }
29     </style>
30 [% END %]
31 </head>
32
33 <body id="acq_suggestion" class="acq">
34 [% INCLUDE 'header.inc' %]
35 [% INCLUDE 'cat-search.inc' %]
36 <div id="breadcrumbs">
37     <a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; <a href="/cgi-bin/koha/acqui/acqui-home.pl">Acquisitions</a> &rsaquo;
38     [% IF op == 'save' %]
39         [% IF ( suggestionid ) %]
40             <a href="/cgi-bin/koha/suggestion/suggestion.pl">Suggestions</a> &rsaquo;  Edit suggestion #[% suggestionid | html %]
41         [% ELSE %]
42             <a href="/cgi-bin/koha/suggestion/suggestion.pl">Suggestions</a> &rsaquo; Add suggestion
43         [% END %]
44     [% ELSIF ( op == 'show' ) %]
45            <a href="/cgi-bin/koha/suggestion/suggestion.pl">Suggestions</a> &rsaquo; Show suggestion #[% suggestionid | html %]
46     [% ELSE %]
47         Suggestions management
48     [% END %]
49 </div>
50
51 [% IF ( op == 'show' ) %]
52     <div class="main container-fluid">
53         <div class="row">
54             <div class="col-md-8 col-md-offset-2">
55
56     <div id="toolbar" class="btn-toolbar">
57         <a class="btn btn-default" id="editsuggestion" href="suggestion.pl?op=edit&amp;suggestionid=[% suggestionid | html %]"><i class="fa fa-pencil"></i> Edit</a>
58         <a class="btn btn-default deletesuggestion" href="suggestion.pl?op=delete&amp;suggestionid=[% suggestionid | html %]"><i class="fa fa-trash"></i> Delete</a>
59     </div>
60
61     <fieldset class="rows">
62       <legend>Bibliographic information</legend>
63       <ol>
64             [% IF ( title ) %]
65                 <li>
66                     <span class="label">Title:</span>
67                     [% IF suggestion.biblionumber %]
68                         <a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% suggestion.biblionumber | uri %]">[% suggestion.title | html %]</a>
69                     [% ELSE %]
70                         [% title | html %]
71                     [% END %]
72                 </li>
73             [% END %]
74             [% IF ( author ) %]
75                 <li>
76                     <span class="label">Author:</span>
77                     [% author | html %]
78                 </li>
79             [% END %]
80             [% IF ( copyrightdate ) %]
81                 <li>
82                     <span class="label">Copyright date:</span>
83                     [% copyrightdate | html %]
84                 </li>
85             [% END %]
86             [% IF ( isbn ) %]
87                 <li>
88                     <span class="label">ISBN or ISSN or other standard number:</span>
89                     [% isbn | html %]
90                 </li>
91             [% END %]
92             [% IF ( publishercode ) %]
93                 <li>
94                     <span class="label">Publisher:</span>
95                     [% publishercode | html %]
96                 </li>
97             [% END %]
98             [% IF ( place ) %]
99                 <li>
100                     <span class="label">Publication place:</span>
101                     [% place | html %]
102                 </li>
103             [% END %]
104             [% IF ( collectiontitle ) %]
105                 <li>
106                     <span class="label">Collection title:</span>
107                     [% collectiontitle | html %]
108                 </li>
109             [% END %]
110             [% IF ( itemtype ) %]
111                 <li>
112                     <span class="label">Document type:</span>
113                     [% AuthorisedValues.GetByCode( 'SUGGEST_FORMAT', itemtype, 0 ) | html %]
114                 </li>
115             [% END %]
116         [% IF ( patron_reason_loop ) %]
117           <li><span class="label">Reason for suggestion: </span>
118             [% FOREACH patron_reason_loo IN patron_reason_loop %]
119               [% IF patron_reason_loo.authorised_value == patronreason %][% patron_reason_loo.lib | html %][% END %]
120             [% END %]
121           </li>
122         [% END %]
123             [% IF ( note ) %]
124                 <li>
125                     <span class="label">Notes:</span>
126                     [% note | html %]
127                 </li>
128             [% END %]
129       </ol>
130     </fieldset>
131     <fieldset class="rows"> <legend>Suggestion management</legend>
132       <ol>
133         <li>
134           <span class="label">Status:</span>
135           [% SET status_found = 0 %]
136           [% IF ( STATUS == 'ASKED' ) %]
137               Pending
138               [% SET status_found = 1 %]
139           [% ELSIF ( STATUS == 'ACCEPTED' ) %]
140               Accepted
141               [% SET status_found = 1 %]
142           [% ELSIF ( STATUS == 'CHECKED' ) %]
143               Checked
144               [% SET status_found = 1 %]
145           [% ELSIF ( STATUS == 'REJECTED' ) %]
146               Rejected
147               [% SET status_found = 1 %]
148           [% ELSIF ( STATUS == 'ORDERED' ) %]
149               Ordered
150               [% SET status_found = 1 %]
151           [% ELSIF ( STATUS == 'AVAILABLE' ) %]
152               Available
153               [% SET status_found = 1 %]
154           [% ELSE %]
155               [% FOREACH s IN SuggestionStatuses %]
156                   [% IF STATUS == s.authorised_value %]
157                       [% s.lib | html %]
158                       [% SET status_found = 1 %]
159                   [% END %]
160               [% END %]
161           [% END %]
162
163         </li>
164         <li>
165           <table>
166             <thead><tr><th>&nbsp;</th><th>Date</th><th>By</th></tr></thead>
167             <tbody>
168             <tr>
169                 <th>[% tp('purchase suggestion created by', 'Created by:') | html %]</th>
170                 <td>[% suggesteddate | $KohaDates %]</td>
171                 <td>
172                     [% IF ( suggestedby_patron.borrowernumber ) %]
173                         <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% suggestedby_patron.borrowernumber | uri %]">[% suggestedby_patron.surname | html %], [% suggestedby_patron.firstname | html %] ([% suggestedby_patron.cardnumber | html %])</a>
174                         [% Branches.GetName( suggestedby_patron.branchcode ) | html %] ([% suggestedby_patron.category.description | html %])
175                     [% END %]
176                 </td>
177             </tr>
178             <tr>
179                 <th>Managed by:</th>
180                 <td>[% manageddate | $KohaDates %]</td>
181                 <td>
182                         [% IF ( managedby_patron.borrowernumber ) %]
183                             <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% managedby_patron.borrowernumber | uri %]">[% managedby_patron.surname | html %], [% managedby_patron.firstname | html %] ([% suggestedby_patron.cardnumber | html %])</a>
184                             [% Branches.GetName( managedby_patron.branchcode ) | html %] ([% managedby_patron.category.description | html %])
185                         [% END %]
186                 </td>
187             </tr>
188             <tr>
189                 <th>Accepted on:</th>
190                 <td>[% accepteddate | $KohaDates %]</td>
191                 <td>
192                     [% IF ( acceptedby_patron.borrowernumber ) %]
193                         <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% acceptedby_patron.borrowernumber | uri %]">[% acceptedby_patron.surname | html %], [% acceptedby_patron.firstname | html %] ([% suggestedby_patron.cardnumber | html %])</a>
194                         [% Branches.GetName( acceptedby_patron.branchcode ) | html %] ([% acceptedby_patron.category.description | html %])
195                     [% END %]
196                 </td>
197             </tr>
198             </tbody>
199         </table></li></ol>
200     </fieldset>
201     <fieldset class="rows"> <legend>Acquisition information</legend>
202       <ol>
203         <li>
204           <span class="label">Library:</span> [% Branches.GetName( branchcode ) | html %]
205         </li>
206         <li>
207           <span class="label">Fund:</span> [% budgetname | html %]
208         </li>
209         <li>
210           <span class="label">Copies:</span>[% quantity | html %]
211         </li>
212         <li>
213           <span class="label">Currency:</span>[% currency | html %]
214         </li>
215         <li>
216           <span class="label">Price:</span>[% price | $Price %]
217         </li>
218         <li>
219           <span class="label">Total</span>[% total | $Price %]
220         </li>
221       </ol>
222     </fieldset>
223
224     <fieldset class="action">
225         <a href="suggestion.pl">&lt;&lt; Back to suggestions</a>
226     </fieldset>
227
228     </div>
229     </div>
230 </div>
231 [% ELSE %]
232
233 [% IF op == 'save' %]
234     <div class="main container-fluid">
235         <div class="row">
236             <div class="col-md-8 col-md-offset-2">
237 [% ELSE %]
238     <div class="main container-fluid">
239         <div class="row">
240             <div class="col-sm-10 col-sm-push-2">
241                 <main>
242
243 [% END %]
244
245 [% IF op == 'save' %]
246     [% FOR m IN messages %]
247         <div class="dialog [% m.type | html %]">
248             [% SWITCH m.code %]
249             [% CASE 'biblio_exists' %]
250                 A similar document already exists: <a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% m.id | uri %]">[% m.title | html %]</a>. Click on "Confirm your suggestion" to ignore this message.
251             [% CASE %]
252                 [% m.code | html %]
253             [% END %]
254         </div>
255     [% END %]
256     <form id="add_edit" action="suggestion.pl" method="post" class="validated">
257     <input type="hidden" name="redirect" id="redirect" value="[% redirect | html %]" />
258     <input type="hidden" name="borrowernumber" id="borrowernumber" value="[% borrowernumber | html %]" />
259     [% IF ( suggestionid ) %]
260         <h1>Edit purchase suggestion #[% suggestionid | html %]</h1>
261         <input type="hidden" name="suggestionid" value="[% suggestionid | html %]"/>
262     [% ELSE %]
263         <h1>Enter a new purchase suggestion</h1>
264     [% END %]
265     <fieldset class="rows"> <legend>Bibliographic information</legend><ol>
266         <li>
267             <label for="title" class="required">Title:</label>
268             <input type="text" id="title" name="title" size="80" maxlength="255" value="[% title | html %]" required="required" class="required" />
269             <span class="required">Required</span>
270         </li>
271         <li><label for="author">Author:</label><input type="text" id="author" name="author" size="50" maxlength="80" value="[% author | html %]"/></li>
272         <li><label for="copyrightdate">Copyright date:</label><input type="text" id="copyrightdate" name="copyrightdate" size="4" maxlength="4" value="[% copyrightdate | html %]" /></li>
273         <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>
274         <li><label for="publishercode">Publisher:</label><input type="text" id="publishercode" name="publishercode" size="50" maxlength="80" value="[% publishercode | html %]"/></li>
275         <li><label for="place">Publication place:</label><input type="text" id="place" name="place" size="50" maxlength="80" value="[% place | html %]"/></li>
276         <li><label for="collectiontitle">Collection title:</label><input type="text" id="collectiontitle" name="collectiontitle" size="50" maxlength="80" value="[% collectiontitle | html %]"/></li>
277         <li><label for="itemtype">Document type:</label>
278             [% PROCESS 'av-build-dropbox.inc' name="itemtype", category="SUGGEST_FORMAT", size = 20, default=itemtype %]
279         </li>
280         [% IF patron_reason_loop %]
281             <li>
282                 <label for="patronreason">Reason for suggestion: </label>
283                 <select name="patronreason" id="patronreason">
284                     <option value=""> -- Choose -- </option>
285                     [% FOREACH patron_reason_loo IN patron_reason_loop %]
286                         [% IF patron_reason_loo.authorised_value == patronreason %]
287                             <option value="[% patron_reason_loo.authorised_value | html %]" selected="selected">[% patron_reason_loo.lib | html %]</option>
288                         [% ELSE %]
289                             <option value="[% patron_reason_loo.authorised_value | html %]">[% patron_reason_loo.lib | html %]</option>
290                         [% END %]
291                     [% END %]
292                 </select>
293             </li>
294         [% END %]
295         <li><label for="note">Notes:</label><textarea name="note" id="note" rows="5" cols="40">[% note | html %]</textarea></li>
296         </ol>
297     </fieldset>
298     <fieldset class="rows"> <legend>Suggestion management</legend>
299        <ol>
300             [% IF ( suggestionid ) %]
301                 <li>
302                     <label for="STATUS">Status:</label>
303                     <select id="STATUS" name="STATUS">
304                         <option value="">No status</option>
305
306                         [% IF (statusselected_ASKED ) %]
307                             <option value="ASKED" selected="selected">Pending</option>
308                         [% ELSE %]
309                             <option value="ASKED">Pending</option>
310                         [% END %]
311
312                         [% IF (statusselected_ACCEPTED ) %]
313                             <option value="ACCEPTED" selected="selected">Accepted</option>
314                         [% ELSE %]
315                             <option value="ACCEPTED">Accepted</option>
316                         [% END %]
317
318                         [% IF (statusselected_CHECKED ) %]
319                             <option value="CHECKED" selected="selected">Checked</option>
320                         [% ELSE %]
321                             <option value="CHECKED">Checked</option>
322                         [% END %]
323
324                         [% IF ( statusselected_REJECTED ) %]
325                             <option value="REJECTED" selected="selected">Rejected</option>
326                         [% ELSE %]
327                             <option value="REJECTED">Rejected</option>
328                         [% END %]
329
330                         [% FOREACH s IN SuggestionStatuses %]
331                             [% IF s.authorised_value == suggestion.STATUS %]
332                                 <option value="[% s.authorised_value | html %]" selected="selected">[% s.lib | html %]</option>
333                             [% ELSE %]
334                                 <option value="[% s.authorised_value | html %]">[% s.lib | html %]</option>
335                             [% END %]
336                         [% END %]
337                     </select>
338                 </li>
339                 <li>
340                     <label for="reason">Reason</label>
341                     <select class="select-reason" id="reason" name="reason">
342                         <option value=""> -- Choose a reason -- </option>
343                         [% FOREACH reasonsloo IN suggestion.reasonsloop %]
344                             [% IF (reasonsloo.lib == suggestion.reason) %]
345                                 <option value="[% reasonsloo.lib | html %]" selected="selected">[% reasonsloo.lib | html %]</option>
346                             [% ELSE %]
347                                 <option value="[% reasonsloo.lib | html %]">[% reasonsloo.lib | html %]</option>
348                             [% END %]
349                         [% END %]
350                         <option value="other">Others...</option>
351                     </select>
352
353                     <span id="other_reason" name="other_reason">
354                         [% IF other_reason %]
355                             <input type="text" size="31" id="select-other_reason" name="other_reason" placeholder="please note your reason here..." value="[% suggestion.reason | html %]"/>
356                         [% ELSE %]
357                             <input type="text" size="31" id="select-other_reason" name="other_reason" placeholder="please note your reason here..." />
358                         [% END %]
359                         <a href="#back">Cancel</a>
360                     </span>
361                 </li>
362             [% END %]
363         <li><table>
364             <thead><tr><th>&nbsp;</th><th>Date</th><th>By</th></tr></thead>
365             <tbody>
366             <tr>
367                 <th><label for="suggesteddate">[% tp('purchase suggestion created by', 'Created by:') | html %]</label> </th>
368                 <td><input type="text" id="suggesteddate" name="suggesteddate" class="datepicker" size="10" maxlength="10" value="[% suggesteddate | $KohaDates %]"/>[% INCLUDE 'date-format.inc' %]</td>
369                 <td><input type="hidden" id="suggestedby" name="suggestedby" value="[% suggestedby | html %]"/>[% IF ( suggestedby_patron.borrowernumber ) %]<a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% suggestedby_patron.borrowernumber | uri %]">[% suggestedby_patron.surname | html %], [% suggestedby_patron.firstname | html %] ([% suggestedby_patron.cardnumber | html %])</a>  [% Branches.GetName( suggestedby_patron.branchcode ) | html %] ([% suggestedby_patron.category.description | html %])[% END %]
370                 </td>
371             </tr>
372             <tr>
373                 <th><label for="accepteddate">Accepted on:</label> </th>
374                 <td><input type="text" id="accepteddate" name="accepteddate" class="datepicker" size="10" maxlength="10" value="[% accepteddate | $KohaDates %]" />[% INCLUDE 'date-format.inc' %]</td>
375                 <td><input type="hidden" id="acceptedby" name="acceptedby" value="[% acceptedby | html %]"/>[% IF ( acceptedby_patron.borrowernumber ) %]<a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% acceptedby_patron.borrowernumber | uri %]">[% acceptedby_patron.surname | html %], [% acceptedby_patron.firstname | html %] ([% suggestedby_patron.cardnumber | html %])</a> [% Branches.GetName( acceptedby_patron.branchcode ) | html %] ([% acceptedby_patron.category.description | html %])[% END %]</td>
376             </tr>
377             </tbody>
378         </table></li>
379
380             <li>
381                 <label for="managedon">Managed on:</label>
382                 <input type="text" id="managedon" name="manageddate" class="datepicker" size="10" maxlength="10" value="[% manageddate | $KohaDates %]" />[% INCLUDE 'date-format.inc' %]
383             </li>
384             <li>
385                 <label for="managedby_name">by:</label>
386                 <div>
387                     <span id="managedby_name">
388                         <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% logged_in_user.borrowernumber | uri %]">You</a>
389                     </span>
390                     [% IF managedby_patron.borrowernumber && logged_in_user.borrowernumber != managedby_patron.borrowernumber %]
391                         | Previously was [% INCLUDE 'patron-title.inc' patron=managedby_patron hide_patron_infos_if_needed=1 %] [% Branches.GetName( managedby_patron.branchcode ) | html %] ([% managedby_patron.category.description | html %])
392                     [% END %]
393                     <br />
394                     <a id="edit_manager" class="new_window" href="#"><i class="fa fa-search"></i> Select manager</a>
395                     [% IF managedby_patron.borrowernumber && logged_in_user.borrowernumber != managedby_patron.borrowernumber %]
396                         <a id="restore_previous_manager" href="#"><i class="fa fa-trash"></i> Keep existing manager</a>
397                     [% END %]
398                     <input type="hidden" name="managedby" id="managedby" value="[% logged_in_user.borrowernumber | html %]" />
399                 </div>
400             </li>
401         </ol>
402     </fieldset>
403     <fieldset class="rows"> <legend>Acquisition information</legend><ol>
404         <li><label for="branchcode">Library:</label>
405             <select name="branchcode" id="branchcode">
406                 <option value="">Any</option>
407                 [% IF branchfilter %]
408                     [% PROCESS options_for_libraries libraries => Branches.all( selected => branchfilter ) %]
409                 [% ELSE %]
410                     [% PROCESS options_for_libraries libraries => Branches.all( selected => branchcode ) %]
411                 [% END %]
412             </select>
413         </li>
414         <li><label for="budgetid">Fund:</label>
415             <select name="budgetid" id="budgetid">
416                 <option value="">Any</option>[% FOREACH budgetsloo IN budgetsloop %]
417                 [% IF ( budgetsloo.selected ) %]<option value="[% budgetsloo.budget_id | html %]" selected="selected">[% budgetsloo.budget_name | html %]</option>[% ELSE %]<option value="[% budgetsloo.budget_id | html %]">[% budgetsloo.budget_name | html %]</option>[% END %][% END %]
418             </select>
419                 </li><li><label for="quantity">Copies:</label>
420             <input type="text" size="10" id="quantity" name="quantity" value="[% quantity | html %]" />
421                 </li>
422                 <li>
423                     <label for="currency">Currency:</label>
424                     [% FOREACH c IN currencies %]
425                         <input type="hidden" value="[% c.rate | html %]" id="currency_rate_[% c.currency | html %]" name="currency_rate_[% c.currency | html %]" />
426                         <input type="hidden" id="[% c.currency | html %]" name="[% c.currency | html %]" value="[% c.rate | html %]" />
427                     [% END %]
428
429                     <select name="currency" id="currency">
430                         [% FOREACH c IN currencies %]
431                             [% IF suggestionid and suggestion.currency == c.currency or not suggestionid and c.active %]
432                                 <option value="[% c.currency | html %]" selected="selected">[% c.currency | html %]</option>
433                             [% ELSIF not c.archived %]
434                                 <option value="[% c.currency | html %]">[% c.currency | html %]</option>
435                             [% END %]
436                         [% END %]
437                     </select>
438                 </li>
439                 <li><label for="price">Price:</label>
440             <input type="text" size="20" name="price" id="price" value="[% price | html %]" />
441                 </li><li><label for="total">Total: </label>
442                         <input type="text" readonly="readonly" id="total" name="total" size="10" value="[% total | html %]"/>
443                 </li></ol>
444     </fieldset><input type="hidden" id="returnsuggested" name="returnsuggested" value="[% IF ( returnsuggestedby ) %][% returnsuggestedby | html %][% ELSE %]noone[% END %]"/>
445     <fieldset class="action">
446         <input type="hidden" name="op" value="[% op | html %]" />
447         [% IF ( suggestionid ) %]
448             [% IF ( need_confirm ) %]
449                 <input type="hidden" name="save_confirmed" value="1" />
450                 <input onclick="this.form.op.value = 'save'; this.form.submit();" type="submit" value="Confirm your suggestion" />
451             [% ELSE %]
452                 <input type="submit" value="Save" />
453             [% END %]
454             <a class="cancel" href="[% IF ( returnsuggestedby ) %]/cgi-bin/koha/members/moremember.pl?borrowernumber=[% returnsuggestedby | uri %]#suggestions[% ELSE %]suggestion.pl[% END %]">Cancel</a>
455         [% ELSE %]
456             [% IF ( need_confirm ) %]
457                 <input type="hidden" name="save_confirmed" value="1" />
458                 <input onclick="this.form.op.value = 'save'; this.form.submit();" type="submit" value="Confirm your suggestion" />
459             [% ELSE %]
460                 <input type="submit" value="Submit your suggestion" />
461             [% END %]
462             <a class="cancel" href="suggestion.pl">Cancel</a>
463         [% END %]
464     </fieldset>
465     </form>
466 [% END %]
467
468 [% IF op == 'else' %]
469 <div id="toolbar" class="btn-toolbar">
470     <a class="btn btn-default" id="newsuggestion" href="suggestion.pl?op=add"><i class="fa fa-plus"></i> New purchase suggestion</a>
471 </div>
472
473 <h1>Suggestions management</h1>
474
475
476 [% FOR m IN messages %]
477     <div class="dialog [% m.type | html %]">
478         [% SWITCH m.code %]
479         [% CASE 'already_exists' %]
480             The suggestion has not been added. A suggestion with this title already exists (<a href='/cgi-bin/koha/suggestion/suggestion.pl?suggestionid=[% m.id | html %]&op=show'>suggestion #[% m.id | html %]</a>)
481         [% CASE 'biblio_exists' %]
482             A similar document already exists: <a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% m.id | uri %]">[% m.title | html %]</a>. Click on "Confirm your suggestion" to ignore this message.
483         [% CASE %]
484             [% m.code | html %]
485         [% END %]
486     </div>
487 [% END %]
488
489 [% UNLESS ( notabs ) %]
490     <div id="suggestiontabs" class="toptabs">
491     <ul class="ui-tabs-nav">
492         [% FOREACH suggestion IN suggestions %]
493                 <li>
494             <a href="#tab_[% loop.count | uri %]">
495             [% IF ( suggestion.suggestiontypelabel ) %]
496                 [% IF (suggestion.suggestiontypelabel == "Pending") %]Pending
497                 [% ELSIF (suggestion.suggestiontypelabel == "Accepted") %]Accepted
498                 [% ELSIF (suggestion.suggestiontypelabel == "Checked") %]Checked
499                 [% ELSIF (suggestion.suggestiontypelabel == "Rejected") %]Rejected
500                 [% ELSIF (suggestion.suggestiontypelabel == "Available") %]Available
501                 [% ELSIF (suggestion.suggestiontypelabel == "Ordered") %]Ordered
502                 [% ELSIF (suggestion.suggestiontypelabel == "Unknown") %]Status unknown
503                 [% ELSE %][% suggestion.suggestiontypelabel | html %][% END %]
504             [% ELSE %]
505                 [% IF ( suggestion.suggestiontype ) %]
506                     [% AuthorisedValues.GetByCode( 'SUGGEST_STATUS', suggestion.suggestiontype ) | html %]
507                 [% ELSE %]
508                     No name
509                 [% END %]
510             [% END %]
511             ([% suggestion.suggestions_loop.size | html %])</a></li>
512
513         [% END %]
514     </ul>
515 [% END %]
516
517 [% FOREACH suggestion IN suggestions %]
518 <div id="tab_[% loop.count | html %]">
519 <form class="update_suggestions" name="f" method="post" action="/cgi-bin/koha/suggestion/suggestion.pl#tab_[% loop.count | html %]">
520
521 [% IF ( suggestion.suggestions_loop ) %]
522 <p><a class="checkall" href="#">Check all</a> | <a class="uncheckall" href="#">Uncheck all</a></p>
523     <table id="table_[% loop.count | html %]" class="sorted">
524         <thead>
525             <tr>
526                 <th class="NoSort noExport">&nbsp;</th>
527                 <th class="anti-the">Suggestion</th>
528                 <th>Suggested by</th>
529                 <th>Suggested on</th>
530                 <th>Managed by</th>
531                 <th>Managed on</th>
532                 <th>Library</th>
533                 <th>Fund</th>
534                 <th>Status</th>
535                 <th class="NoSort noExport">&nbsp;</th>
536             </tr>
537     </thead>
538         <tbody>
539             [% FOREACH suggestions_loo IN suggestion.suggestions_loop %]
540                 <tr>
541                 <td>
542                     <input type="checkbox" name="suggestionid" value="[% suggestions_loo.suggestionid | html %]" />
543                 </td>
544                 <td>
545                     <a href="suggestion.pl?suggestionid=[% suggestions_loo.suggestionid | uri %]&amp;op=show" title="suggestion" >
546                         [% suggestions_loo.title | html %][% IF ( suggestions_loo.author ) %], by [% suggestions_loo.author | html %][% END %]</a>
547                     <br />
548                     [% IF ( suggestions_loo.copyrightdate ) %]&copy; [% suggestions_loo.copyrightdate | html %] [% END %]
549                         [% IF ( suggestions_loo.volumedesc ) %]; Volume:<i>[% suggestions_loo.volumedesc | html %]</i> [% END %]
550                         [% 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 ) | html %] [% END %]<br />[% IF ( suggestions_loo.note ) %]<div class="note"><i class="fa fa-comment"></i> [% suggestions_loo.note | html %]</div>[% END %]
551                 </td>
552                 <td>
553                     <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% suggestions_loo.suggestedby | uri %]">[% suggestions_loo.surnamesuggestedby | html %][% IF ( suggestions_loo.firstnamesuggestedby ) %], [% suggestions_loo.firstnamesuggestedby | html %][% END %] [% IF (suggestions_loo.cardnumbersuggestedby ) %]([% suggestions_loo.cardnumbersuggestedby | html %])[% END %]</a>
554                 </td>
555                 <td data-order="[% suggestions_loo.suggesteddate | html %]">
556                     [% IF ( suggestions_loo.suggesteddate ) %][% suggestions_loo.suggesteddate | $KohaDates %][% END %]
557                 </td>
558                 <td>
559                     <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% suggestions_loo.suggestedby | uri %]">[% suggestions_loo.surnamemanagedby | html %][% IF ( suggestions_loo.firstnamemanagedby ) %], [% suggestions_loo.firstnamemanagedby | html %][% END %]</a>
560                 </td>
561                 <td data-order="[% suggestions_loo.manageddate | html %]">
562                     [% IF ( suggestions_loo.manageddate ) %][% suggestions_loo.manageddate | $KohaDates %][% END %]
563                 </td>
564                 <td>
565                     [% Branches.GetName( suggestions_loo.branchcode ) | html %]
566                 </td>
567                 <td>
568                     [% suggestions_loo.budget_name | html %]
569                 </td>
570                 <td>
571                     [% IF ( suggestions_loo.ASKED ) %]
572                         Pending
573                     [% ELSIF ( suggestions_loo.ACCEPTED ) %]
574                         Accepted
575                     [% ELSIF ( suggestions_loo.ORDERED ) %]
576                         Ordered
577                     [% ELSIF ( suggestions_loo.REJECTED ) %]
578                         Rejected
579                     [% ELSIF ( suggestions_loo.CHECKED ) %]
580                         Checked
581                     [% ELSIF ( suggestions_loo.AVAILABLE ) %]
582                         Available
583                     [% ELSIF AuthorisedValues.GetByCode( 'SUGGEST_STATUS', suggestions_loo.STATUS ) %]
584                         [% AuthorisedValues.GetByCode( 'SUGGEST_STATUS', suggestions_loo.STATUS ) | html %]
585                     [% ELSE %]
586                         Status unknown
587                     [% END %]
588
589                     [% IF ( suggestions_loo.reason ) %]
590                         <br />([% suggestions_loo.reason | html %])
591                     [% END %]
592                 </td>
593                 <td class="actions">
594                     <a class="btn btn-xs btn-default" href="suggestion.pl?suggestionid=[% suggestions_loo.suggestionid | html %]&amp;op=edit"><i class="fa fa-pencil"></i> Edit</a>
595                     <a class="btn btn-default btn-xs deletesuggestion" href="suggestion.pl?op=delete&amp;suggestionid=[% suggestions_loo.suggestionid | html %]"><i class="fa fa-trash"></i> Delete</a>
596                 </td>
597         </tr>
598         [% END %]</tbody>
599         </table>
600
601         <div class="row">
602             <h2 style="padding-left:1em;">Change selected suggestions</h3>
603             <div class="col-sm-4">
604                 <fieldset>
605                     <div id="select-reason">
606                        <label for="STATUS">Mark selected as: </label>
607                        <select name="STATUS" id="STATUS">
608                            <option value=""> -- Choose a status --</option>
609
610                            [% IF (statusselected_ASKED ) %]
611                                <option value="ASKED" selected="selected">Pending</option>
612                            [% ELSE %]
613                                <option value="ASKED">Pending</option>
614                            [% END %]
615
616                            [% IF (statusselected_ACCEPTED ) %]
617                                <option value="ACCEPTED" selected="selected">Accepted</option>
618                            [% ELSE %]
619                                <option value="ACCEPTED">Accepted</option>
620                            [% END %]
621
622                            [% IF (statusselected_CHECKED ) %]
623                                <option value="CHECKED" selected="selected">Checked</option>
624                            [% ELSE %]
625                                <option value="CHECKED">Checked</option>
626                            [% END %]
627
628                            [% IF ( statusselected_REJECTED ) %]
629                                <option value="REJECTED" selected="selected">Rejected</option>
630                            [% ELSE %]
631                                <option value="REJECTED">Rejected</option>
632                            [% END %]
633
634                            [% FOREACH s IN SuggestionStatuses %]
635                                <option value="[% s.authorised_value | html %]">[% s.lib | html %]</option>
636                            [% END %]
637                        </select>
638
639                        <label for="reason">with this reason:</label>
640                        <select name="reason">
641                            <option value=""> -- Choose a reason -- </option>
642                            [% FOREACH reasonsloo IN suggestion.reasonsloop %]
643                                <option value="[% reasonsloo.lib | html %]">[% reasonsloo.lib | html %]</option>
644                            [% END %]
645                            <option value="other">Others...</option>
646                        </select>
647
648                        <span class="other_reason">
649                            <input type="text" size="31" name="other_reason" placeholder="please note your reason here..." />
650                            <a href="#" class="cancel_note">Cancel</a>
651                        </span>
652                     </div>
653
654                     <input type="hidden" name="branchcode" value="[% branchfilter | html %]" />
655                     <fieldset class="action"><button type="submit" class="btn btn-default btn-xs" value="update_status"/>Submit</button></fieldset>
656                 </fieldset>
657             </div>
658             <div class="col-sm-4">
659                 <fieldset>
660                     <label for="itemtype">Update item types with: </label>
661                     [% PROCESS 'av-build-dropbox.inc' name="suggestion_itemtype", category="SUGGEST_FORMAT", size = 20  %]
662                     <input type="hidden" name="branchcode" value="[% branchfilter | html %]" />
663                     <fieldset class="action"><button type="submit" class="btn btn-default btn-xs" value="update_itemtype"/>Submit</button></fieldset>
664                 </fieldset>
665             </div>
666
667             <div class="col-sm-2">
668                 <fieldset>
669                     <label for="set_manager_[% loop.count %]">Update manager</label><br/>
670                     <a id="edit_manager" class="new_window" href="#"><i class="fa fa-search"></i> Select manager</a>
671                     <span id="managedby_name"></span>
672                     <input type="hidden" name="suggestion_managedby" id="managedby" value="[% logged_in_user.borrowernumber | html %]" />
673                     <input type="hidden" name="branchcode" value="[% branchfilter | html %]" />
674                     <fieldset class="action"><button type="submit" class="btn btn-default btn-xs" value="update_manager"/>Submit</button></fieldset>
675                 </fieldset>
676             </div>
677
678             <div class="col-sm-2">
679                 <fieldset>
680                     <label for="delete_[% loop.count | html %]">Delete selected</label>
681                     <input type="hidden" name="branchcode" value="[% branchfilter | html %]" />
682                     <fieldset class="action"><button type="submit" class="btn btn-default btn-xs" value="delete"/>Delete</button></fieldset>
683                 </fieldset>
684             </div>
685
686         </div>
687
688 [% ELSE %]
689     <b>No results.</b>
690 [% END %]
691 </form>
692 </div>
693 [% END %]
694 [% END %]
695
696 [% UNLESS op == 'save' %]
697     [% UNLESS ( op == 'show' ) %]
698
699             </main>
700         </div> <!-- /.col-sm-10.col-sm-push-2 -->
701
702         <div class="col-sm-2 col-sm-pull-10">
703             <aside>
704
705 <form name="suggestionfilter" action="suggestion.pl" method="get">
706 <fieldset class="brief"><ol style="display:block;"><li><label for="displayby">Organize by: </label>
707                 <select name="displayby" id="displayby" style="width:auto;">
708                     [% IF ( displayby == "STATUS" ) %]
709                         <option value="STATUS" selected="selected">Status</option>
710                     [% ELSE %]
711                         <option value="STATUS">Status</option>
712                     [% END %]
713                     [% IF ( displayby == "branchcode" ) %]
714                         <option value="branchcode" selected="selected">Library</option>
715                     [% ELSE %]
716                         <option value="branchcode">Library</option>
717                     [% END %]
718                     [% IF ( displayby == "itemtype" ) %]
719                         <option value="itemtype" selected="selected">Item type</option>
720                     [% ELSE %]
721                         <option value="itemtype">Item type</option>
722                     [% END %]
723                     [% IF ( displayby == "managedby" ) %]
724                         <option value="managedby" selected="selected">Managed by</option>
725                     [% ELSE %]
726                         <option value="managedby">Managed by</option>
727                     [% END %]
728                     [% IF ( displayby == "acceptedby" ) %]
729                         <option value="acceptedby" selected="selected">Accepted by</option>
730                     [% ELSE %]
731                         <option value="acceptedby">Accepted by</option>
732                     [% END %]
733                 </select> <input type="submit" value="Go" /></li></ol></fieldset>
734 <h4>Filter by: <a style="font-size:80%;font-weight:normal;" href="/cgi-bin/koha/suggestion/suggestion.pl">[clear]</a></h4>
735                 <div style="display:block;" id="limits">
736
737                                 <fieldset class="brief"><h4 class="local_collapse"><a href="#">Bibliographic information</a></h4>
738                    <ol> <li><label for="title"> Title:</label><input type="text" id="title" name="title" value="[% title | html %]" /></li>
739                     <li><label for="author"> Author:</label><input type="text" id="author" name="author" value="[% author | html %]" /></li>
740                     <li><label for="isbn"> ISBN:</label><input type="text" id="isbn"  name="isbn" value="[% isbn | html %]" /></li>
741                     <li><label for="publishercode"> Publisher:</label><input type="text" id="publishercode" name="publishercode" value="[% publishercode | html %]" /></li>
742                     <li><label for="copyrightdate_filter"> Copyright date:</label><input type="text" id="copyrightdate_filter" name="copyrightdate" value="[% copyrightdate | html %]" /></li>
743                     <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>
744                 </fieldset>
745                                  <fieldset class="brief"><h4 class="local_collapse"><a href="#">Suggestion information</a></h4>
746                     <ol>
747                       <li>
748                           <label for="STATUS"> Status:</label>
749                           <select name="STATUS" id="STATUS">
750                               <option value="">Any</option>
751
752                               [% IF (statusselected_ASKED ) %]
753                                   <option value="ASKED" selected="selected">Pending</option>
754                               [% ELSE %]
755                                   <option value="ASKED">Pending</option>
756                               [% END %]
757
758                               [% IF (statusselected_ACCEPTED ) %]
759                                   <option value="ACCEPTED" selected="selected">Accepted</option>
760                               [% ELSE %]
761                                   <option value="ACCEPTED">Accepted</option>
762                               [% END %]
763
764                               [% IF (statusselected_CHECKED ) %]
765                                   <option value="CHECKED" selected="selected">Checked</option>
766                               [% ELSE %]
767                                   <option value="CHECKED">Checked</option>
768                               [% END %]
769
770                               [% IF ( statusselected_REJECTED ) %]
771                                   <option value="REJECTED" selected="selected">Rejected</option>
772                               [% ELSE %]
773                                   <option value="REJECTED">Rejected</option>
774                               [% END %]
775
776                               [% FOREACH s IN SuggestionStatuses %]
777                                   [% IF s.authorised_value == selected_status %]
778                                       <option value="[% s.authorised_value | html %]" selected="selected">[% s.lib | html %]</option>
779                                   [% ELSE %]
780                                       <option value="[% s.authorised_value | html %]">[% s.lib | html %]</option>
781                                   [% END %]
782                               [% END %]
783                           </select>
784                       </li>
785
786                     <li><label for="suggestedby"> Suggested by:</label><select id="suggestedby" name="suggestedby"><option value="">Any</option>
787 [% FOREACH suggestedby_loo IN suggestedby_loop %][% IF ( suggestedby_loo.selected ) %]<option value="[% suggestedby_loo.code | html %]" selected="selected">[% suggestedby_loo.desc | html %]</option>[% ELSE %]<option value="[% suggestedby_loo.code | html %]">[% suggestedby_loo.desc | html %]</option>[% END %][% END %]
788                                                                      </select></li>
789                     <li>
790                         <label for="suggesteddate_from">Suggested date from:</label>
791                         <input type="text" id="suggesteddate_from" size="10" name="suggesteddate_from" value="[% suggesteddate_from | html %]" />
792                     </li>
793                     <li>
794                         <label for="suggesteddate_to">To:</label>
795                         <input type="text" id="suggesteddate_to" size="10" name="suggesteddate_to" value="[% suggesteddate_to | html %]" />
796                     </li>
797                     <li><label for="managedby"> Managed by:</label><select id="managedby" name="managedby"><option value="">Any</option>
798 [% FOREACH managedby_loo IN managedby_loop %][% IF ( managedby_loo.selected ) %]<option value="[% managedby_loo.code | html %]" selected="selected">[% managedby_loo.desc | html %]</option>[% ELSE %]<option value="[% managedby_loo.code | html %]">[% managedby_loo.desc | html %]</option>[% END %][% END %]
799                                                                      </select></li>
800                     <li>
801                         <label for="manageddate_from">Management date from:</label>
802                         <input type="text" id="manageddate_from" size="10" name="manageddate_from" value="[% manageddate_from | html %]" />
803                     </li>
804                     <li>
805                         <label for="manageddate_to">To:</label>
806                         <input type="text" id="manageddate_to" size="10" name="manageddate_to" value="[% manageddate_to | html %]" />
807                     </li>
808                     <li><label for="acceptedby"> Accepted by:</label><select id="acceptedby" name="acceptedby"><option value="">Any</option>
809 [% FOREACH acceptedby_loo IN acceptedby_loop %][% IF ( acceptedby_loo.selected ) %] <option value="[% acceptedby_loo.code | html %]" selected="selected">[% acceptedby_loo.desc | html %]</option>[% ELSE %]<option value="[% acceptedby_loo.code | html %]">[% acceptedby_loo.desc | html %]</option>[% END %][% END %]
810                                                       </select></li>
811                     <li>
812                         <label for="accepteddate_from">Accepted date from:</label>
813                         <input type="text" id="accepteddate_from" size="10" name="accepteddate_from" value="[% accepteddate_from | html %]" />
814                     </li>
815                     <li>
816                         <label for="accepteddate_to">To:</label>
817                         <input type="text" id="accepteddate_to" size="10" name="accepteddate_to" value="[% accepteddate_to | html %]" />
818                     </li>
819                     <li><input type="submit" value="Go" /></li></ol>
820                 </fieldset>
821
822                                 <fieldset class="brief"><h4 class="local_collapse"><a href="#">Acquisition information</a></h4>
823                     <ol><li><label for="budgetid"> Book fund:</label>
824                     <select name="budgetid" id="budgetid">
825                       <option value="__ANY__">Any</option>
826                       [% IF budgetid == '__NONE__' %]
827                           <option value="__NONE__" selected="selected">None</option>
828                       [% ELSE %]
829                           <option value="__NONE__">None</option>
830                       [% END %]
831                     [% FOREACH budgetsloo IN budgetsloop %]
832                         [% IF ( budgetsloo.selected ) %]<option value="[% budgetsloo.budget_id | html %]" selected="selected">[% budgetsloo.budget_name | html %]</option>[% ELSE %]<option value="[% budgetsloo.budget_id | html %]">[% budgetsloo.budget_name | html %]</option>[% END %]
833                         [% END %]
834                     </select></li>
835                     <li><label for="branchcode">Library:</label>
836                     <select name="branchcode" id="branchcode">
837                         <option value="__ANY__">Any</option>
838                         [% IF branchfilter %]
839                             [% PROCESS options_for_libraries libraries => Branches.all( selected => branchfilter ) %]
840                         [% ELSE %]
841                             [% PROCESS options_for_libraries libraries => Branches.all( selected => branchcode ) %]
842                         [% END %]
843                     </select></li><li><input type="submit" value="Go" /></li></ol>
844                 </fieldset>
845             </form>
846         [% INCLUDE 'acquisitions-menu.inc' %]
847
848             </aside>
849         </div> <!-- /.col-sm-2.col-sm-pull-10 -->
850      </div> <!-- /.row -->
851
852     [% END %]
853     [% END %]
854 </div>
855 [% END %]
856
857 [% MACRO jsinclude BLOCK %]
858     [% INCLUDE 'calendar.inc' %]
859
860     <script type="text/javascript">
861         function editManagerPopup() {
862             window.open("/cgi-bin/koha/admin/add_user_search.pl?selection_type=select",
863                 'PatronPopup',
864                 'width=740,height=450,location=yes,toolbar=no,'
865                 + 'scrollbars=yes,resize=yes'
866             );
867         }
868         function select_user(borrowernumber, borrower) {
869             $("#managedby_name").empty();
870             $("#managedby").val('');
871             var borrowername = borrower.firstname + ' ' + borrower.surname;
872             if (borrowernumber) {
873                 var managerlink = '<a href="/cgi-bin/koha/members/moremember.pl'
874                     + '?borrowernumber=' + borrowernumber + '">'
875                     + borrowername + '</a>';
876                 $('#managedby_name').html(managerlink);
877                 $('#managedby').val(borrowernumber);
878             }
879         }
880
881         $(document).ready(function(){
882             $("#edit_manager").on("click",function(e){
883                 e.preventDefault();
884                 editManagerPopup();
885             });
886         });
887     </script>
888
889     [% IF ( op == 'show' || op == 'else' ) %]
890         <script>
891             $(document).ready(function(){
892                 $(".deletesuggestion").on("click",function(){
893                     return confirm(_("Are you sure you want to delete this suggestion?"));
894                 });
895             });
896         </script>
897     [% END %]
898     [% IF op == 'else' %]
899         [% INCLUDE 'datatables.inc' %]
900         [% INCLUDE 'columns_settings.inc' %]
901         [% Asset.js("lib/jquery/plugins/jquery.checkboxes.min.js") | $raw %]
902
903         <script>
904             $(document).ready(function() {
905                 $('#suggestiontabs').tabs();
906
907                 columns_settings = [% ColumnsSettings.GetColumns( 'acqui', 'suggestions', 'suggestions', 'json' ) | $raw %]
908                 [% FOREACH suggestion IN suggestions %]
909                     [% IF ( suggestion.suggestions_loop ) %]
910                         KohaTable("table_[% loop.count| html %]", {
911                             "sorting": [[ 1, "asc" ]],
912                             "autoWidth": false,
913                             "columnDefs": [
914                                 { "sortable": false, "searchable": false, 'targets': [ 'NoSort' ] },
915                                 { "sType": "anti-the", "aTargets" : [ "anti-the" ] },
916                             ]
917                         }, columns_settings );
918                     [% END %]
919                 [% END %]
920
921                 $(".checkall").click(function(e){
922                     e.preventDefault();
923                     $(this).parents('form').checkCheckboxes();
924                     return false;
925                 });
926                 $(".uncheckall").click(function(e){
927                     e.preventDefault();
928                     $(this).parents('form').unCheckCheckboxes();
929                     return false;
930                 });
931                 $(".other_reason").hide();
932                 $("select[name='reason']").change(function(){
933                     if($(this).val() == "other"){
934                         $(this).hide();
935                         $(this).siblings(".other_reason").show();
936                     }
937                 });
938
939                 $("a.cancel_note").click(function(e) {
940                     $(this).parent().siblings("select").show().find("option[value='']").attr("selected","selected");
941                     $(this).siblings("input[name='other_reason']").hide();
942                     e.preventDefault();
943                 });
944                 $("h4.local_collapse a").click(function(){
945                     $(this).parent().parent().find("ol").toggle();
946                     return false;
947                 });
948                 // http://jqueryui.com/demos/datepicker/#date-range
949                 var dates = $( "#suggesteddate_from, #suggesteddate_to" ).datepicker({
950                     changeMonth: true,
951                     numberOfMonths: 1,
952                     onSelect: function( selectedDate ) {
953                         var option = this.id == "suggesteddate_from" ? "minDate" : "maxDate",
954                             instance = $( this ).data( "datepicker" );
955                             date = $.datepicker.parseDate(
956                                 instance.settings.dateFormat ||
957                                 $.datepicker._defaults.dateFormat,
958                                 selectedDate, instance.settings );
959                         dates.not( this ).datepicker( "option", option, date );
960                     }
961                 });
962                 var datesMD = $( "#manageddate_from, #manageddate_to" ).datepicker({
963                     changeMonth: true,
964                     numberOfMonths: 1,
965                     onSelect: function( selectedDate ) {
966                         var option = this.id == "manageddate_from" ? "minDate" : "maxDate",
967                             instance = $( this ).data( "datepicker" );
968                             date = $.datepicker.parseDate(
969                                 instance.settings.dateFormat ||
970                                 $.datepicker._defaults.dateFormat,
971                                 selectedDate, instance.settings );
972                         datesMD.not( this ).datepicker( "option", option, date );
973                     }
974                 });
975                 var datesAD = $( "#accepteddate_from, #accepteddate_to" ).datepicker({
976                     changeMonth: true,
977                     numberOfMonths: 1,
978                     onSelect: function( selectedDate ) {
979                         var option = this.id == "accepteddate_from" ? "minDate" : "maxDate",
980                             instance = $( this ).data( "datepicker" );
981                             date = $.datepicker.parseDate(
982                                 instance.settings.dateFormat ||
983                                 $.datepicker._defaults.dateFormat,
984                                 selectedDate, instance.settings );
985                         datesAD.not( this ).datepicker( "option", option, date );
986                     }
987                 });
988
989                 $("button[type='submit']").on("click", function(e) {
990                     var form = $(this).parents("form");
991                     var action = $(this).val();
992                     var selected_suggestions = $(form).find("input[name='suggestionid']:checked");
993                     if ( selected_suggestions.length == 0 ) {
994                         alert(_("Please select at least one suggestion"));
995                         e.preventDefault();
996                         return false;
997                     }
998                     if ( action == "delete" ) {
999                         if ( selected_suggestions.length == 1 ) {
1000                             if ( ! confirm(_("Are you sure you want to delete this suggestion?")) ) {
1001                                 e.preventDefault();
1002                                 return false;
1003                             }
1004                         } else if ( selected_suggestions.length > 1 ) {
1005                             if ( ! confirm(_("Are you sure you want to delete these suggestions?")) ) {
1006                                 e.preventDefault();
1007                                 return false;
1008                             }
1009                         }
1010                     } else if ( action == "update_manager" ) {
1011                         if ( $("#managedby").val() == "" ) {
1012                             alert(_("Please select a manager to assign to the selected suggestions"));
1013                             e.preventDefault();
1014                             return false;
1015                         }
1016                     }
1017
1018                     $('<input />').attr('type', 'hidden')
1019                                   .attr('name', "op")
1020                                   .attr('value', action)
1021                                   .appendTo(form);
1022                     return true;
1023                 });
1024             });
1025         </script>
1026     [% END %]
1027     [% IF op == 'save'  %]
1028         <script>
1029
1030             $(document).ready(function(){
1031                 calcNewsuggTotal();
1032                 $("#quantity,#price,#currency").on("change",function(){
1033                     calcNewsuggTotal();
1034                 });
1035
1036                 [% IF other_reason %]
1037                     $(".select-reason").hide();
1038                     $(".select-reason").find("option[value='other']").attr("selected","selected");
1039                     $("#other_reason").show();
1040                 [% ELSE %]
1041                     $("#other_reason").hide();
1042                 [% END %]
1043                 $(".select-reason").change(function(){
1044                     if($(this).val() == "other"){
1045                         $(this).hide();
1046                         $("#other_reason").show();
1047                     }
1048                 });
1049                 $("a[href*=back]").click(function(){
1050                     $(".select-reason").show().find("option[value='']").attr("selected","selected");
1051                     $("#other_reason").hide();
1052                 });
1053
1054                 $("#restore_previous_manager").on("click",function(e){
1055                     e.preventDefault();
1056
1057                     $("#managedby_name").empty();
1058                     $("#managedby").val('');
1059                     var borrowername = "[% managedby_patron.firstname | html %] [% managedby_patron.surname | html %]";
1060                     var managerlink = '<a href="/cgi-bin/koha/members/moremember.pl'
1061                         + '?borrowernumber=[% managedby_patron.borrowernumber | html %]">'
1062                         + borrowername + '</a>';
1063                     $('#managedby_name').html(managerlink);
1064                     $('#managedby').val([% managedby_patron.borrowernumber | html %]);
1065                 });
1066
1067             });
1068         </script>
1069     [% END %]
1070     [% Asset.js("js/acq.js") | $raw %]
1071     [% Asset.js("js/acquisitions-menu.js") | $raw %]
1072 [% END %]
1073
1074 [% INCLUDE 'intranet-bottom.inc' %]