1 [% PROCESS 'i18n.inc' %]
5 [% USE AuthorisedValues %]
8 [% USE ColumnsSettings %]
10 [% INCLUDE 'doc-head-open.inc' %]
11 <title>Koha › Acquisitions ›
13 [% IF ( suggestionid ) %]
14 Suggestions › Edit suggestion #[% suggestionid | html %]
16 Suggestions › Add suggestion
18 [% ELSIF ( op == 'show' ) %]
19 Suggestions › Show suggestion #[% suggestionid | html %]
21 Suggestions management
24 [% INCLUDE 'doc-head-close.inc' %]
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; }
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> › <a href="/cgi-bin/koha/acqui/acqui-home.pl">Acquisitions</a> ›
39 [% IF ( suggestionid ) %]
40 <a href="/cgi-bin/koha/suggestion/suggestion.pl">Suggestions</a> › Edit suggestion #[% suggestionid | html %]
42 <a href="/cgi-bin/koha/suggestion/suggestion.pl">Suggestions</a> › Add suggestion
44 [% ELSIF ( op == 'show' ) %]
45 <a href="/cgi-bin/koha/suggestion/suggestion.pl">Suggestions</a> › Show suggestion #[% suggestionid | html %]
47 Suggestions management
51 [% IF ( op == 'show' ) %]
52 <div class="main container-fluid">
54 <div class="col-md-8 col-md-offset-2">
56 <div id="toolbar" class="btn-toolbar">
57 <a class="btn btn-default" id="editsuggestion" href="suggestion.pl?op=edit&suggestionid=[% suggestionid | html %]"><i class="fa fa-pencil"></i> Edit</a>
58 <a class="btn btn-default deletesuggestion" href="suggestion.pl?op=delete&suggestionid=[% suggestionid | html %]"><i class="fa fa-trash"></i> Delete</a>
61 <fieldset class="rows">
62 <legend>Bibliographic information</legend>
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>
76 <span class="label">Author:</span>
80 [% IF ( copyrightdate ) %]
82 <span class="label">Copyright date:</span>
83 [% copyrightdate | html %]
88 <span class="label">ISBN or ISSN or other standard number:</span>
92 [% IF ( publishercode ) %]
94 <span class="label">Publisher:</span>
95 [% publishercode | html %]
100 <span class="label">Publication place:</span>
104 [% IF ( collectiontitle ) %]
106 <span class="label">Collection title:</span>
107 [% collectiontitle | html %]
110 [% IF ( itemtype ) %]
112 <span class="label">Document type:</span>
113 [% AuthorisedValues.GetByCode( 'SUGGEST_FORMAT', itemtype, 0 ) | html %]
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 %]
125 <span class="label">Notes:</span>
131 <fieldset class="rows"> <legend>Suggestion management</legend>
134 <span class="label">Status:</span>
135 [% SET status_found = 0 %]
136 [% IF ( STATUS == 'ASKED' ) %]
138 [% SET status_found = 1 %]
139 [% ELSIF ( STATUS == 'ACCEPTED' ) %]
141 [% SET status_found = 1 %]
142 [% ELSIF ( STATUS == 'CHECKED' ) %]
144 [% SET status_found = 1 %]
145 [% ELSIF ( STATUS == 'REJECTED' ) %]
147 [% SET status_found = 1 %]
148 [% ELSIF ( STATUS == 'ORDERED' ) %]
150 [% SET status_found = 1 %]
151 [% ELSIF ( STATUS == 'AVAILABLE' ) %]
153 [% SET status_found = 1 %]
155 [% FOREACH s IN SuggestionStatuses %]
156 [% IF STATUS == s.authorised_value %]
158 [% SET status_found = 1 %]
166 <thead><tr><th> </th><th>Date</th><th>By</th></tr></thead>
169 <th>[% tp('purchase suggestion created by', 'Created by:') | html %]</th>
170 <td>[% suggesteddate | $KohaDates %]</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 %])
180 <td>[% manageddate | $KohaDates %]</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 %] ([% managedby_patron.cardnumber | html %])</a>
184 [% Branches.GetName( managedby_patron.branchcode ) | html %] ([% managedby_patron.category.description | html %])
189 <th>Accepted on:</th>
190 <td>[% accepteddate | $KohaDates %]</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 %] ([% acceptedby_patron.cardnumber | html %])</a>
194 [% Branches.GetName( acceptedby_patron.branchcode ) | html %] ([% acceptedby_patron.category.description | html %])
199 <th>Last modification on:</th>
200 <td>[% lastmodificationdate | $KohaDates %]</td>
202 [% IF ( lastmodificationby_patron.borrowernumber ) %]
203 <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% lastmodificationby_patron.borrowernumber | uri %]">[% lastmodificationby_patron.surname | html %], [% lastmodificationby_patron.firstname | html %] ([% lastmodificationby_patron.cardnumber | html %])</a>
204 [% Branches.GetName( lastmodificationby_patron.branchcode ) | html %] ([% lastmodificationby_patron.category.description | html %])
211 <fieldset class="rows"> <legend>Acquisition information</legend>
214 <span class="label">Library:</span> [% Branches.GetName( branchcode ) | html %]
217 <span class="label">Fund:</span> [% budgetname | html %]
220 <span class="label">Copies:</span>[% quantity | html %]
223 <span class="label">Currency:</span>[% currency | html %]
226 <span class="label">Price:</span>[% price | $Price %]
229 <span class="label">Total</span>[% total | $Price %]
234 <fieldset class="action">
235 <a href="suggestion.pl"><< Back to suggestions</a>
243 [% IF op == 'save' %]
244 <div class="main container-fluid">
246 <div class="col-md-8 col-md-offset-2">
248 <div class="main container-fluid">
250 <div class="col-sm-10 col-sm-push-2">
255 [% IF op == 'save' %]
256 [% FOR m IN messages %]
257 <div class="dialog [% m.type | html %]">
259 [% CASE 'biblio_exists' %]
260 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.
266 <form id="add_edit" action="suggestion.pl" method="post" class="validated">
267 <input type="hidden" name="redirect" id="redirect" value="[% redirect | html %]" />
268 <input type="hidden" name="borrowernumber" id="borrowernumber" value="[% borrowernumber | html %]" />
269 [% IF ( suggestionid ) %]
270 <h1>Edit purchase suggestion #[% suggestionid | html %]</h1>
271 <input type="hidden" name="suggestionid" value="[% suggestionid | html %]"/>
273 <h1>Enter a new purchase suggestion</h1>
275 <fieldset class="rows"> <legend>Bibliographic information</legend><ol>
277 <label for="title" class="required">Title:</label>
278 <input type="text" id="title" name="title" size="80" maxlength="255" value="[% title | html %]" required="required" class="required" />
279 <span class="required">Required</span>
281 <li><label for="author">Author:</label><input type="text" id="author" name="author" size="50" maxlength="80" value="[% author | html %]"/></li>
282 <li><label for="copyrightdate">Copyright date:</label><input type="text" id="copyrightdate" name="copyrightdate" size="4" maxlength="4" value="[% copyrightdate | html %]" /></li>
283 <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>
284 <li><label for="publishercode">Publisher:</label><input type="text" id="publishercode" name="publishercode" size="50" maxlength="80" value="[% publishercode | html %]"/></li>
285 <li><label for="place">Publication place:</label><input type="text" id="place" name="place" size="50" maxlength="80" value="[% place | html %]"/></li>
286 <li><label for="collectiontitle">Collection title:</label><input type="text" id="collectiontitle" name="collectiontitle" size="50" maxlength="80" value="[% collectiontitle | html %]"/></li>
287 <li><label for="itemtype">Document type:</label>
288 [% PROCESS 'av-build-dropbox.inc' name="itemtype", category="SUGGEST_FORMAT", size = 20, default=itemtype %]
290 [% IF patron_reason_loop %]
292 <label for="patronreason">Reason for suggestion: </label>
293 <select name="patronreason" id="patronreason">
294 <option value=""> -- Choose -- </option>
295 [% FOREACH patron_reason_loo IN patron_reason_loop %]
296 [% IF patron_reason_loo.authorised_value == patronreason %]
297 <option value="[% patron_reason_loo.authorised_value | html %]" selected="selected">[% patron_reason_loo.lib | html %]</option>
299 <option value="[% patron_reason_loo.authorised_value | html %]">[% patron_reason_loo.lib | html %]</option>
305 <li><label for="note">Notes:</label><textarea name="note" id="note" rows="5" cols="40">[% note | html %]</textarea></li>
308 <fieldset class="rows"> <legend>Suggestion management</legend>
310 [% IF ( suggestionid ) %]
312 <label for="STATUS">Status:</label>
313 <select id="STATUS" name="STATUS">
314 <option value="">No status</option>
316 [% IF (statusselected_ASKED ) %]
317 <option value="ASKED" selected="selected">Pending</option>
319 <option value="ASKED">Pending</option>
322 [% IF (statusselected_ACCEPTED ) %]
323 <option value="ACCEPTED" selected="selected">Accepted</option>
325 <option value="ACCEPTED">Accepted</option>
328 [% IF (statusselected_CHECKED ) %]
329 <option value="CHECKED" selected="selected">Checked</option>
331 <option value="CHECKED">Checked</option>
334 [% IF ( statusselected_REJECTED ) %]
335 <option value="REJECTED" selected="selected">Rejected</option>
337 <option value="REJECTED">Rejected</option>
340 [% FOREACH s IN SuggestionStatuses %]
341 [% IF s.authorised_value == suggestion.STATUS %]
342 <option value="[% s.authorised_value | html %]" selected="selected">[% s.lib | html %]</option>
344 <option value="[% s.authorised_value | html %]">[% s.lib | html %]</option>
350 <label for="reason">Reason</label>
351 <select class="select-reason" id="reason" name="reason">
352 <option value=""> -- Choose a reason -- </option>
353 [% FOREACH reasonsloo IN suggestion.reasonsloop %]
354 [% IF (reasonsloo.lib == suggestion.reason) %]
355 <option value="[% reasonsloo.lib | html %]" selected="selected">[% reasonsloo.lib | html %]</option>
357 <option value="[% reasonsloo.lib | html %]">[% reasonsloo.lib | html %]</option>
360 <option value="other">Others...</option>
363 <span id="other_reason" name="other_reason">
364 [% IF other_reason %]
365 <input type="text" size="31" id="select-other_reason" name="other_reason" placeholder="please note your reason here..." value="[% suggestion.reason | html %]"/>
367 <input type="text" size="31" id="select-other_reason" name="other_reason" placeholder="please note your reason here..." />
369 <a href="#back">Cancel</a>
374 <thead><tr><th> </th><th>Date</th><th>By</th></tr></thead>
377 <th><label for="suggesteddate">[% tp('purchase suggestion created by', 'Created by:') | html %]</label> </th>
378 <td><input type="text" id="suggesteddate" name="suggesteddate" class="datepicker" size="10" maxlength="10" value="[% suggesteddate | $KohaDates %]"/>[% INCLUDE 'date-format.inc' %]</td>
379 <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 %]
383 <th><label for="accepteddate">Accepted on:</label> </th>
384 <td><input type="text" id="accepteddate" name="accepteddate" class="datepicker" size="10" maxlength="10" value="[% accepteddate | $KohaDates %]" />[% INCLUDE 'date-format.inc' %]</td>
385 <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>
388 <th><label for="lastmodificationdate">Last modification on:</label> </th>
389 <td>[% lastmodificationdate | $KohaDates %]</td>
391 [% IF lastmodificationby_patron %]
392 [% INCLUDE 'patron-title.inc' patron=lastmodificationby_patron hide_patron_infos_if_needed=1 %] [% Branches.GetName( lastmodificationby_patron.branchcode ) | html %] ([% lastmodificationby_patron.category.description | html %])
400 <label for="managedon">Managed on:</label>
401 <input type="text" id="managedon" name="manageddate" class="datepicker" size="10" maxlength="10" value="[% manageddate | $KohaDates %]" />[% INCLUDE 'date-format.inc' %]
404 <label for="managedby_name">by:</label>
406 <span id="managedby_name" name="managedby_name">
407 <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% logged_in_user.borrowernumber | uri %]">You</a>
409 [% IF managedby_patron.borrowernumber && logged_in_user.borrowernumber != managedby_patron.borrowernumber %]
410 | 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 %])
413 <a id="edit_manager" class="new_window" href="#"><i class="fa fa-search"></i> Select manager</a>
414 [% IF managedby_patron.borrowernumber && logged_in_user.borrowernumber != managedby_patron.borrowernumber %]
415 <a id="restore_previous_manager" href="#"><i class="fa fa-trash"></i> Keep existing manager</a>
417 <input type="hidden" name="managedby" id="managedby" value="[% logged_in_user.borrowernumber | html %]" />
420 <label for="notify">Notify manager:</label>
421 <input type="checkbox" id="notify" name="notify" value="notify" disabled="disabled" title="A NOTIFY_MANAGER notice will be generated and send to the manager if a valid email address is defined. This can be checked if a new manager has been selected." />
426 <fieldset class="rows"> <legend>Acquisition information</legend><ol>
427 <li><label for="branchcode">Library:</label>
428 <select name="branchcode" id="branchcode">
429 <option value="">Any</option>
430 [% IF branchfilter %]
431 [% PROCESS options_for_libraries libraries => Branches.all( selected => branchfilter ) %]
433 [% PROCESS options_for_libraries libraries => Branches.all( selected => branchcode ) %]
437 <li><label for="budgetid">Fund:</label>
438 <select name="budgetid" id="budgetid">
439 <option value="">Any</option>[% FOREACH budgetsloo IN budgetsloop %]
440 [% 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 %]
442 </li><li><label for="quantity">Copies:</label>
443 <input type="text" size="10" id="quantity" name="quantity" value="[% quantity | html %]" />
446 <label for="currency">Currency:</label>
447 [% FOREACH c IN currencies %]
448 <input type="hidden" value="[% c.rate | html %]" id="currency_rate_[% c.currency | html %]" name="currency_rate_[% c.currency | html %]" />
449 <input type="hidden" id="[% c.currency | html %]" name="[% c.currency | html %]" value="[% c.rate | html %]" />
452 <select name="currency" id="currency">
453 [% FOREACH c IN currencies %]
454 [% IF suggestionid and suggestion.currency == c.currency or not suggestionid and c.active %]
455 <option value="[% c.currency | html %]" selected="selected">[% c.currency | html %]</option>
456 [% ELSIF not c.archived %]
457 <option value="[% c.currency | html %]">[% c.currency | html %]</option>
462 <li><label for="price">Price:</label>
463 <input type="text" size="20" name="price" id="price" value="[% price | html %]" />
464 </li><li><label for="total">Total: </label>
465 <input type="text" readonly="readonly" id="total" name="total" size="10" value="[% total | html %]"/>
467 </fieldset><input type="hidden" id="returnsuggested" name="returnsuggested" value="[% IF ( returnsuggestedby ) %][% returnsuggestedby | html %][% ELSE %]noone[% END %]"/>
468 <fieldset class="action">
469 <input type="hidden" name="op" value="[% op | html %]" />
470 [% IF ( suggestionid ) %]
471 [% IF ( need_confirm ) %]
472 <input type="hidden" name="save_confirmed" value="1" />
473 <input onclick="this.form.op.value = 'save'; this.form.submit();" type="submit" value="Confirm your suggestion" />
475 <input type="submit" value="Save" />
477 <a class="cancel" href="[% IF ( returnsuggestedby ) %]/cgi-bin/koha/members/moremember.pl?borrowernumber=[% returnsuggestedby | uri %]#suggestions[% ELSE %]suggestion.pl[% END %]">Cancel</a>
479 [% IF ( need_confirm ) %]
480 <input type="hidden" name="save_confirmed" value="1" />
481 <input onclick="this.form.op.value = 'save'; this.form.submit();" type="submit" value="Confirm your suggestion" />
483 <input type="submit" value="Submit your suggestion" />
485 <a class="cancel" href="suggestion.pl">Cancel</a>
491 [% IF op == 'else' %]
492 <div id="toolbar" class="btn-toolbar">
493 <a class="btn btn-default" id="newsuggestion" href="suggestion.pl?op=add"><i class="fa fa-plus"></i> New purchase suggestion</a>
496 <h1>Suggestions management</h1>
499 [% FOR m IN messages %]
500 <div class="dialog [% m.type | html %]">
502 [% CASE 'already_exists' %]
503 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>)
504 [% CASE 'biblio_exists' %]
505 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.
512 [% UNLESS ( notabs ) %]
513 <div id="suggestiontabs" class="toptabs">
514 <ul class="ui-tabs-nav">
515 [% FOREACH suggestion IN suggestions %]
517 <a href="#tab_[% loop.count | uri %]">
518 [% IF ( suggestion.suggestiontypelabel ) %]
519 [% IF (suggestion.suggestiontypelabel == "Pending") %]Pending
520 [% ELSIF (suggestion.suggestiontypelabel == "Accepted") %]Accepted
521 [% ELSIF (suggestion.suggestiontypelabel == "Checked") %]Checked
522 [% ELSIF (suggestion.suggestiontypelabel == "Rejected") %]Rejected
523 [% ELSIF (suggestion.suggestiontypelabel == "Available") %]Available
524 [% ELSIF (suggestion.suggestiontypelabel == "Ordered") %]Ordered
525 [% ELSIF (suggestion.suggestiontypelabel == "Unknown") %]Status unknown
526 [% ELSE %][% suggestion.suggestiontypelabel | html %][% END %]
528 [% IF ( suggestion.suggestiontype ) %]
529 [% AuthorisedValues.GetByCode( 'SUGGEST_STATUS', suggestion.suggestiontype ) | html %]
534 ([% suggestion.suggestions_loop.size | html %])</a></li>
540 [% FOREACH suggestion IN suggestions %]
541 <div id="tab_[% loop.count | html %]">
542 <form class="update_suggestions" name="f" method="post" action="/cgi-bin/koha/suggestion/suggestion.pl#tab_[% loop.count | html %]">
544 [% IF ( suggestion.suggestions_loop ) %]
545 <p><a class="checkall" href="#">Check all</a> | <a class="uncheckall" href="#">Uncheck all</a></p>
546 <table id="table_[% loop.count | html %]" class="sorted">
549 <th class="NoSort noExport"> </th>
550 <th class="anti-the">Suggestion</th>
551 <th>Suggested by</th>
552 <th>Suggested on</th>
555 <th>Last modification by</th>
556 <th>Last modification on</th>
560 <th class="NoSort noExport"> </th>
564 [% FOREACH suggestions_loo IN suggestion.suggestions_loop %]
567 <input type="checkbox" name="suggestionid" value="[% suggestions_loo.suggestionid | html %]" />
570 <a href="suggestion.pl?suggestionid=[% suggestions_loo.suggestionid | uri %]&op=show" title="suggestion" >
571 [% suggestions_loo.title | html %][% IF ( suggestions_loo.author ) %], by [% suggestions_loo.author | html %][% END %]</a>
573 [% IF ( suggestions_loo.copyrightdate ) %]© [% suggestions_loo.copyrightdate | html %] [% END %]
574 [% IF ( suggestions_loo.volumedesc ) %]; Volume:<i>[% suggestions_loo.volumedesc | html %]</i> [% END %]
575 [% 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 %]
578 <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>
580 <td data-order="[% suggestions_loo.suggesteddate | html %]">
581 [% IF ( suggestions_loo.suggesteddate ) %][% suggestions_loo.suggesteddate | $KohaDates %][% END %]
584 <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% suggestions_loo.managedby | uri %]">[% suggestions_loo.surnamemanagedby | html %][% IF ( suggestions_loo.firstnamemanagedby ) %], [% suggestions_loo.firstnamemanagedby | html %][% END %]</a>
586 <td data-order="[% suggestions_loo.manageddate | html %]">
587 [% IF ( suggestions_loo.manageddate ) %][% suggestions_loo.manageddate | $KohaDates %][% END %]
590 <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% suggestions_loo.lastmodificationby | uri %]">[% suggestions_loo.surnamelastmodificationby | html %][% IF ( suggestions_loo.firstnamelastmodificationby ) %], [% suggestions_loo.firstnamelastmodificationby | html %][% END %]</a>
592 <td data-order="[% suggestions_loo.lastmodificationdate | html %]">
593 [% IF ( suggestions_loo.lastmodificationdate ) %][% suggestions_loo.lastmodificationdate | $KohaDates %][% END %]
596 [% Branches.GetName( suggestions_loo.branchcode ) | html %]
599 [% suggestions_loo.budget_name | html %]
602 [% IF ( suggestions_loo.ASKED ) %]
604 [% ELSIF ( suggestions_loo.ACCEPTED ) %]
606 [% ELSIF ( suggestions_loo.ORDERED ) %]
608 [% ELSIF ( suggestions_loo.REJECTED ) %]
610 [% ELSIF ( suggestions_loo.CHECKED ) %]
612 [% ELSIF ( suggestions_loo.AVAILABLE ) %]
614 [% ELSIF AuthorisedValues.GetByCode( 'SUGGEST_STATUS', suggestions_loo.STATUS ) %]
615 [% AuthorisedValues.GetByCode( 'SUGGEST_STATUS', suggestions_loo.STATUS ) | html %]
620 [% IF ( suggestions_loo.reason ) %]
621 <br />([% suggestions_loo.reason | html %])
625 <a class="btn btn-xs btn-default" href="suggestion.pl?suggestionid=[% suggestions_loo.suggestionid | html %]&op=edit"><i class="fa fa-pencil"></i> Edit</a>
626 <a class="btn btn-default btn-xs deletesuggestion" href="suggestion.pl?op=delete&suggestionid=[% suggestions_loo.suggestionid | html %]"><i class="fa fa-trash"></i> Delete</a>
633 <h2 style="padding-left:1em;">Change selected suggestions</h3>
634 <div class="col-sm-4">
636 <div id="select-reason">
637 <label for="STATUS">Mark selected as: </label>
638 <select name="STATUS" id="STATUS">
639 <option value=""> -- Choose a status --</option>
641 [% IF (statusselected_ASKED ) %]
642 <option value="ASKED" selected="selected">Pending</option>
644 <option value="ASKED">Pending</option>
647 [% IF (statusselected_ACCEPTED ) %]
648 <option value="ACCEPTED" selected="selected">Accepted</option>
650 <option value="ACCEPTED">Accepted</option>
653 [% IF (statusselected_CHECKED ) %]
654 <option value="CHECKED" selected="selected">Checked</option>
656 <option value="CHECKED">Checked</option>
659 [% IF ( statusselected_REJECTED ) %]
660 <option value="REJECTED" selected="selected">Rejected</option>
662 <option value="REJECTED">Rejected</option>
665 [% FOREACH s IN SuggestionStatuses %]
666 <option value="[% s.authorised_value | html %]">[% s.lib | html %]</option>
670 <label for="reason">with this reason:</label>
671 <select name="reason">
672 <option value=""> -- Choose a reason -- </option>
673 [% FOREACH reasonsloo IN suggestion.reasonsloop %]
674 <option value="[% reasonsloo.lib | html %]">[% reasonsloo.lib | html %]</option>
676 <option value="other">Others...</option>
679 <span class="other_reason">
680 <input type="text" size="31" name="other_reason" placeholder="please note your reason here..." />
681 <a href="#" class="cancel_note">Cancel</a>
685 <input type="hidden" name="branchcode" value="[% branchfilter | html %]" />
686 <fieldset class="action"><button type="submit" class="btn btn-default btn-xs" value="update_status"/>Submit</button></fieldset>
689 <div class="col-sm-4">
691 <label for="itemtype">Update item types with: </label>
692 [% PROCESS 'av-build-dropbox.inc' name="suggestion_itemtype", category="SUGGEST_FORMAT", size = 20 %]
693 <input type="hidden" name="branchcode" value="[% branchfilter | html %]" />
694 <fieldset class="action"><button type="submit" class="btn btn-default btn-xs" value="update_itemtype"/>Submit</button></fieldset>
698 <div class="col-sm-2">
700 <label for="set_manager_[% loop.count | html %]">Update manager</label><br/>
701 <a id="set_manager_[% loop.count | html %]" data-tab="[% loop.count | html %]" class="set_manager" href="#"><i class="fa fa-search"></i> Select manager</a>
702 <span id="managedby_name[% loop.count | html %]"></span>
703 <input type="hidden" name="suggestion_managedby" id="managedby[% loop.count | html %]" value="[% logged_in_user.borrowernumber | html %]" />
704 <input type="hidden" name="branchcode" value="[% branchfilter | html %]" />
705 <fieldset class="action"><button type="submit" class="btn btn-default btn-xs" value="update_manager"/>Submit</button></fieldset>
709 <div class="col-sm-2">
711 <label for="delete_[% loop.count | html %]">Delete selected</label>
712 <input type="hidden" name="branchcode" value="[% branchfilter | html %]" />
713 <fieldset class="action"><button type="submit" class="btn btn-default btn-xs" value="delete"/>Delete</button></fieldset>
727 [% UNLESS op == 'save' %]
728 [% UNLESS ( op == 'show' ) %]
731 </div> <!-- /.col-sm-10.col-sm-push-2 -->
733 <div class="col-sm-2 col-sm-pull-10">
736 <form name="suggestionfilter" action="suggestion.pl" method="get">
737 <fieldset class="brief"><ol style="display:block;"><li><label for="displayby">Organize by: </label>
738 <select name="displayby" id="displayby" style="width:auto;">
739 [% IF ( displayby == "STATUS" ) %]
740 <option value="STATUS" selected="selected">Status</option>
742 <option value="STATUS">Status</option>
744 [% IF ( displayby == "branchcode" ) %]
745 <option value="branchcode" selected="selected">Library</option>
747 <option value="branchcode">Library</option>
749 [% IF ( displayby == "itemtype" ) %]
750 <option value="itemtype" selected="selected">Item type</option>
752 <option value="itemtype">Item type</option>
754 [% IF ( displayby == "managedby" ) %]
755 <option value="managedby" selected="selected">Managed by</option>
757 <option value="managedby">Managed by</option>
759 [% IF ( displayby == "acceptedby" ) %]
760 <option value="acceptedby" selected="selected">Accepted by</option>
762 <option value="acceptedby">Accepted by</option>
764 </select> <input type="submit" value="Go" /></li></ol></fieldset>
765 <h4>Filter by: <a style="font-size:80%;font-weight:normal;" href="/cgi-bin/koha/suggestion/suggestion.pl">[clear]</a></h4>
766 <div style="display:block;" id="limits">
768 <fieldset class="brief"><h4 class="local_collapse"><a href="#">Bibliographic information</a></h4>
769 <ol> <li><label for="title"> Title:</label><input type="text" id="title" name="title" value="[% title | html %]" /></li>
770 <li><label for="author"> Author:</label><input type="text" id="author" name="author" value="[% author | html %]" /></li>
771 <li><label for="isbn"> ISBN:</label><input type="text" id="isbn" name="isbn" value="[% isbn | html %]" /></li>
772 <li><label for="publishercode"> Publisher:</label><input type="text" id="publishercode" name="publishercode" value="[% publishercode | html %]" /></li>
773 <li><label for="copyrightdate_filter"> Copyright date:</label><input type="text" id="copyrightdate_filter" name="copyrightdate" value="[% copyrightdate | html %]" /></li>
774 <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>
776 <fieldset class="brief"><h4 class="local_collapse"><a href="#">Suggestion information</a></h4>
779 <label for="STATUS"> Status:</label>
781 <select name="STATUS" id="STATUS">
782 <option value="">Any</option>
784 [% IF (statusselected_ASKED ) %]
785 <option value="ASKED" selected="selected">Pending</option>
787 <option value="ASKED">Pending</option>
790 [% IF (statusselected_ACCEPTED ) %]
791 <option value="ACCEPTED" selected="selected">Accepted</option>
793 <option value="ACCEPTED">Accepted</option>
796 [% IF (statusselected_CHECKED ) %]
797 <option value="CHECKED" selected="selected">Checked</option>
799 <option value="CHECKED">Checked</option>
802 [% IF ( statusselected_REJECTED ) %]
803 <option value="REJECTED" selected="selected">Rejected</option>
805 <option value="REJECTED">Rejected</option>
808 [% FOREACH s IN SuggestionStatuses %]
809 [% IF s.authorised_value == selected_status %]
810 <option value="[% s.authorised_value | html %]" selected="selected">[% s.lib | html %]</option>
812 <option value="[% s.authorised_value | html %]">[% s.lib | html %]</option>
818 <li><label for="suggestedby"> Suggested by:</label><select id="suggestedby" name="suggestedby"><option value="">Any</option>
819 [% 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 %]
822 <label for="suggesteddate_from">Suggested date from:</label>
823 <input type="text" id="suggesteddate_from" size="10" name="suggesteddate_from" value="[% suggesteddate_from | html %]" />
826 <label for="suggesteddate_to">To:</label>
827 <input type="text" id="suggesteddate_to" size="10" name="suggesteddate_to" value="[% suggesteddate_to | html %]" />
829 <li><label for="managedby"> Managed by:</label><select id="managedby" name="managedby"><option value="">Any</option>
830 [% 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 %]
833 <label for="manageddate_from">Management date from:</label>
834 <input type="text" id="manageddate_from" size="10" name="manageddate_from" value="[% manageddate_from | html %]" />
837 <label for="manageddate_to">To:</label>
838 <input type="text" id="manageddate_to" size="10" name="manageddate_to" value="[% manageddate_to | html %]" />
840 <li><label for="acceptedby"> Accepted by:</label><select id="acceptedby" name="acceptedby"><option value="">Any</option>
841 [% 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 %]
844 <label for="accepteddate_from">Accepted date from:</label>
845 <input type="text" id="accepteddate_from" size="10" name="accepteddate_from" value="[% accepteddate_from | html %]" />
848 <label for="accepteddate_to">To:</label>
849 <input type="text" id="accepteddate_to" size="10" name="accepteddate_to" value="[% accepteddate_to | html %]" />
851 <li><input type="submit" value="Go" /></li></ol>
854 <fieldset class="brief"><h4 class="local_collapse"><a href="#">Acquisition information</a></h4>
855 <ol><li><label for="budgetid"> Book fund:</label>
856 <select name="budgetid" id="budgetid">
857 <option value="__ANY__">Any</option>
858 [% IF budgetid == '__NONE__' %]
859 <option value="__NONE__" selected="selected">None</option>
861 <option value="__NONE__">None</option>
863 [% FOREACH budgetsloo IN budgetsloop %]
864 [% 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 %]
867 <li><label for="branchcode">Library:</label>
868 <select name="branchcode" id="branchcode">
869 <option value="__ANY__">Any</option>
870 [% IF branchfilter %]
871 [% PROCESS options_for_libraries libraries => Branches.all( selected => branchfilter ) %]
873 [% PROCESS options_for_libraries libraries => Branches.all( selected => branchcode ) %]
875 </select></li><li><input type="submit" value="Go" /></li></ol>
878 [% INCLUDE 'acquisitions-menu.inc' %]
881 </div> <!-- /.col-sm-2.col-sm-pull-10 -->
882 </div> <!-- /.row -->
889 [% MACRO jsinclude BLOCK %]
890 [% INCLUDE 'calendar.inc' %]
894 function editManagerPopup(selected_tab) {
896 window.open("/cgi-bin/koha/suggestion/add_user_search.pl?selection_type=select",
898 'width=740,height=450,location=yes,toolbar=no,'
899 + 'scrollbars=yes,resize=yes'
902 function select_user(borrowernumber, borrower) {
903 var managedby_name = $("#managedby_name"+tab);
904 var managedby = $("#managedby"+tab);
905 managedby_name.empty();
907 var borrowername = borrower.firstname + ' ' + borrower.surname;
908 if (borrowernumber) {
909 var managerlink = '<a href="/cgi-bin/koha/members/moremember.pl'
910 + '?borrowernumber=' + borrowernumber + '">'
911 + borrowername + '</a>';
912 managedby_name.html(managerlink);
913 managedby.val(borrowernumber);
916 [% IF op == "save" %]
917 var notify = $('#notify');
918 if ( notify.length ) {
919 [% IF managedby_patron %]
920 if ( borrowernumber == [% logged_in_user.borrowernumber | html %] || borrowernumber == [% managedby_patron.borrowernumber | html %] ) {
922 if ( borrowernumber == [% logged_in_user.borrowernumber | html %] ) {
924 $(notify).prop('checked', false).prop('disabled', true);
926 $(notify).prop('disabled', false);
932 $(document).ready(function(){
933 $("#edit_manager").on("click",function(e){
935 editManagerPopup('');
937 $(".set_manager").on("click",function(e){
939 var selected_tab = $(this).data('tab');
940 editManagerPopup(selected_tab);
946 [% IF ( op == 'show' || op == 'else' ) %]
948 $(document).ready(function(){
949 $(".deletesuggestion").on("click",function(){
950 return confirm(_("Are you sure you want to delete this suggestion?"));
955 [% IF op == 'else' %]
956 [% INCLUDE 'datatables.inc' %]
957 [% INCLUDE 'columns_settings.inc' %]
958 [% Asset.js("lib/jquery/plugins/jquery.checkboxes.min.js") | $raw %]
961 $(document).ready(function() {
962 $('#suggestiontabs').tabs();
964 columns_settings = [% ColumnsSettings.GetColumns( 'acqui', 'suggestions', 'suggestions', 'json' ) | $raw %]
965 [% FOREACH suggestion IN suggestions %]
966 [% IF ( suggestion.suggestions_loop ) %]
967 KohaTable("table_[% loop.count| html %]", {
968 "sorting": [[ 1, "asc" ]],
971 { "sortable": false, "searchable": false, 'targets': [ 'NoSort' ] },
972 { "sType": "anti-the", "aTargets" : [ "anti-the" ] },
974 }, columns_settings );
978 $(".checkall").click(function(e){
980 $(this).parents('form').checkCheckboxes();
983 $(".uncheckall").click(function(e){
985 $(this).parents('form').unCheckCheckboxes();
988 $(".other_reason").hide();
989 $("select[name='reason']").change(function(){
990 if($(this).val() == "other"){
992 $(this).siblings(".other_reason").show();
996 $("a.cancel_note").click(function(e) {
997 $(this).parent().siblings("select").show().find("option[value='']").attr("selected","selected");
998 $(this).siblings("input[name='other_reason']").hide();
1001 $("h4.local_collapse a").click(function(){
1002 $(this).parent().parent().find("ol").toggle();
1005 // http://jqueryui.com/demos/datepicker/#date-range
1006 var dates = $( "#suggesteddate_from, #suggesteddate_to" ).datepicker({
1009 onSelect: function( selectedDate ) {
1010 var option = this.id == "suggesteddate_from" ? "minDate" : "maxDate",
1011 instance = $( this ).data( "datepicker" );
1012 date = $.datepicker.parseDate(
1013 instance.settings.dateFormat ||
1014 $.datepicker._defaults.dateFormat,
1015 selectedDate, instance.settings );
1016 dates.not( this ).datepicker( "option", option, date );
1019 var datesMD = $( "#manageddate_from, #manageddate_to" ).datepicker({
1022 onSelect: function( selectedDate ) {
1023 var option = this.id == "manageddate_from" ? "minDate" : "maxDate",
1024 instance = $( this ).data( "datepicker" );
1025 date = $.datepicker.parseDate(
1026 instance.settings.dateFormat ||
1027 $.datepicker._defaults.dateFormat,
1028 selectedDate, instance.settings );
1029 datesMD.not( this ).datepicker( "option", option, date );
1032 var datesAD = $( "#accepteddate_from, #accepteddate_to" ).datepicker({
1035 onSelect: function( selectedDate ) {
1036 var option = this.id == "accepteddate_from" ? "minDate" : "maxDate",
1037 instance = $( this ).data( "datepicker" );
1038 date = $.datepicker.parseDate(
1039 instance.settings.dateFormat ||
1040 $.datepicker._defaults.dateFormat,
1041 selectedDate, instance.settings );
1042 datesAD.not( this ).datepicker( "option", option, date );
1046 $("button[type='submit']").on("click", function(e) {
1047 var submit_button = this;
1048 var form = $(submit_button).parents("form");
1049 var action = $(submit_button).val();
1050 var selected_suggestions = $(form).find("input[name='suggestionid']:checked");
1051 if ( selected_suggestions.length == 0 ) {
1052 alert(_("Please select at least one suggestion"));
1056 if ( action == "delete" ) {
1057 if ( selected_suggestions.length == 1 ) {
1058 if ( ! confirm(_("Are you sure you want to delete this suggestion?")) ) {
1062 } else if ( selected_suggestions.length > 1 ) {
1063 if ( ! confirm(_("Are you sure you want to delete these suggestions?")) ) {
1068 } else if ( action == "update_manager" ) {
1069 var managedby = $(submit_button).siblings("suggestion_managedby");
1070 if ( managedby.val() == "" ) {
1071 alert(_("Please select a manager to assign to the selected suggestions"));
1077 $('<input />').attr('type', 'hidden')
1079 .attr('value', action)
1086 [% IF op == 'save' %]
1089 $(document).ready(function(){
1091 $("#quantity,#price,#currency").on("change",function(){
1095 [% IF other_reason %]
1096 $(".select-reason").hide();
1097 $(".select-reason").find("option[value='other']").attr("selected","selected");
1098 $("#other_reason").show();
1100 $("#other_reason").hide();
1102 $(".select-reason").change(function(){
1103 if($(this).val() == "other"){
1105 $("#other_reason").show();
1108 $("a[href*=back]").click(function(){
1109 $(".select-reason").show().find("option[value='']").attr("selected","selected");
1110 $("#other_reason").hide();
1113 $("#restore_previous_manager").on("click",function(e){
1116 $("#managedby_name").empty();
1117 $("#managedby").val('');
1118 var borrowername = "[% managedby_patron.firstname | html %] [% managedby_patron.surname | html %]";
1119 var managerlink = '<a href="/cgi-bin/koha/members/moremember.pl'
1120 + '?borrowernumber=[% managedby_patron.borrowernumber | html %]">'
1121 + borrowername + '</a>';
1122 $('#managedby_name').html(managerlink);
1123 $('#managedby').val([% managedby_patron.borrowernumber | html %]);
1124 $('#notify').prop('checked', false).prop('disabled', true);
1130 [% Asset.js("js/acq.js") | $raw %]
1131 [% Asset.js("js/acquisitions-menu.js") | $raw %]
1134 [% INCLUDE 'intranet-bottom.inc' %]