Bug 20212: (QA follow-up) Remember current filter
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / acqui / parcel.tt
1 [% USE raw %]
2 [% USE Asset %]
3 [% USE Koha %]
4 [% USE KohaDates %]
5 [% USE Price %]
6 [% USE currency = format('%.2f') -%]
7 [% PROCESS 'i18n.inc' %]
8 [% SET footerjs = 1 %]
9 [% INCLUDE 'doc-head-open.inc' %]
10 <title>
11     Koha &rsaquo; Acquisitions &rsaquo;
12     [% IF ( invoiceclosedate ) %]
13         Receipt summary for [% name | html %] [% IF ( invoice ) %]invoice [% invoice | html %][% END %]
14     [% ELSE %]
15         Receive orders from [% name | html %]
16     [% END %]
17 </title>
18 [% INCLUDE 'doc-head-close.inc' %]
19 </head>
20
21 <body id="acq_parcel" class="acq">
22 [% INCLUDE 'header.inc' %]
23 [% INCLUDE 'acquisitions-search.inc' %]
24
25 <div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; <a href="/cgi-bin/koha/acqui/acqui-home.pl">Acquisitions</a> &rsaquo;
26     [% IF invoiceclosedate %]
27         Receipt summary for <em>[% name | html %]</em>
28         [% IF ( invoice ) %]
29             <em>[ [% invoice | html %] ]</em>
30         [% END %]
31     [% ELSE %]
32         Receive orders from [% name | html %]
33     [% END %]
34 </div>
35
36
37 <div class="main container-fluid">
38     <div class="row">
39         <div class="col-sm-10 col-sm-push-2">
40             <main>
41
42     [% IF ( receive_error ) %]
43     <div class="dialog alert">
44     <h3>Error adding items:</h3>
45     <ul>
46     [% FOREACH error_loo IN error_loop %]
47         <li>[% error_loo.error_param | html %][% IF ( error_loo.error_duplicate_barcode ) %]Duplicate Barcode[% END %] <!-- todo: other error conditions come here. --></li>
48     [% END %]
49     </ul>
50     </div>
51     [% END %]
52     <h1>
53         [% IF ( invoiceclosedate ) %]
54         Receipt summary for <em>[% name | html %]</em> [% IF ( invoice ) %] <em> [ [% invoice | html %] ] </em>[% END %]
55         [% ELSE %]
56             Receive orders from [% name | html %]
57         [% END %]
58     </h1>
59
60     [% IF ( success_delorder ) %]
61     <div class="dialog message">The order has been successfully canceled.</div>
62     [% ELSE %]
63     [% IF ( error_delitem ) %]
64         <div class="dialog alert">The order has been canceled, although one or more items could not have been deleted.</div>
65     [% END %]
66     [% IF ( error_delbiblio ) %]
67         <div class="dialog alert">The order has been canceled, although the record has not been deleted.</div>
68     [% END %]
69     [% END %]
70
71     [% IF (error_cancelling_receipt) %]
72       <div class="dialog alert">
73       Cannot cancel receipt. Possible reasons :
74       <ul>
75         <li>
76           The order line you are trying to cancel was created from a partial receipt
77           of another order line which is already received. Try to cancel this
78           one first and retry.
79         </li>
80         <li>
81           The order line you are trying to cancel was created from a partial receipt
82           of another order line which has been deleted. Cancellation is not
83           possible.
84         </li>
85       </ul>
86       </div>
87     [% END %]
88
89     [% IF error_invoice_not_known %]
90         <div class="dialog alert">
91             The invoice referenced by this invoiceid does not exist.
92         </div>
93     [% END %]
94
95 [% UNLESS no_orders_to_display %]
96 <div id="acqui_receive_summary">
97 <p><strong>Invoice number:</strong> [% invoice | html %] <strong>Shipment date:</strong> [% shipmentdate | $KohaDates %]</p>
98 </div>
99 [% UNLESS (invoiceclosedate) %]
100     <div id="acqui_receive_search">
101         <h3>Pending orders</h3>
102         <table id="pending_orders" class="table table-bordered table-striped">
103             <thead>
104                 <tr>
105                     <th>Basket</th>
106                     <th>Basket group</th>
107                     <th>Order line</th>
108                     <th class="hidden">Title</th>
109                     <th class="hidden">Author</th>
110                     <th class="hidden">ISBN</th>
111                     <th>Summary</th>
112                     <th>More</th>
113                     <th>Replacement price</th>
114                     <th>Quantity</th>
115                     <th>Unit cost</th>
116                     <th>Order cost</th>
117                     <th>Fund</th>
118                     <th>&nbsp;</th>
119                     <th>&nbsp;</th>
120                 </tr>
121             </thead>
122         </table>
123     </div>
124 [% ELSE %]
125     <p>
126         Invoice is closed, so you can't receive orders anymore.
127         [% IF CAN_user_acquisition_reopen_closed_invoices %]
128             <a href="/cgi-bin/koha/acqui/invoice.pl?op=reopen&invoiceid=[% invoiceid | uri %]&referer=/cgi-bin/koha/acqui/parcel.pl%3Finvoiceid=[% invoiceid | uri %]">Reopen it</a>.
129         [% END %]
130     </p>
131 [% END %]
132
133 <div id="acqui_receive_receivelist">
134     <h3>Already received</h3>
135
136    [% IF ( loop_received ) %]
137    <form action="/cgi-bin/koha/acqui/parcel.pl" method="get" name="orderform">
138     <table id="receivedt">
139       <thead>
140         <tr>
141           <th>Basket</th>
142           <th>Basket group</th>
143           <th>Order line</th>
144           <th title="Item holds / Total holds">Holds</th>
145           <th>Summary</th>
146           <th>More</th>
147           <th>Replacement price</th>
148           <th>Quantity</th>
149           <th>Fund</th>
150           <th>Est cost</th>
151           <th>Actual cost</th>
152           <th>TOTAL</th>
153           <th></th>
154         </tr>
155       </thead>
156     <tfoot>
157         [% FOREACH key IN subtotal_for_funds.keys.sort %]
158             <tr>
159                 [% IF invoiceincgst %]
160                     <td colspan="6" class="total">(Tax inc.)</td>
161                 [% ELSE %]
162                     <td colspan="6" class="total">(Tax exc.)</td>
163                 [% END %]
164                 <td colspan="3"><em>Subtotal for</em> [% key | html %]</td>
165                 <td>[% subtotal_for_funds.$key.ecost | $Price %]</td>
166                 <td>[% subtotal_for_funds.$key.unitprice | $Price %]</td>
167                 <td>&nbsp;</td>
168                 <td>&nbsp;</td>
169             </tr>
170         [% END %]
171         <tr>
172             <th colspan="11" class="total">Total tax exc.</th>
173             <th>[% total_tax_excluded | $Price %]</th>
174             <th></th>
175         </tr>
176         [% FOREACH book_foot IN book_foot_loop %]
177             <tr>
178                 <th colspan="11">Total (GST [% book_foot.tax_rate * 100 | html %]%)</th>
179                 <th>[% book_foot.tax_value | $Price %]</th>
180                 <th></th>
181             </tr>
182         [% END %]
183         <tr>
184             <th colspan="11" class="total">Total tax inc.</th>
185             <th>[% total_tax_included | $Price %]</th>
186             <th></th>
187         </tr>
188     </tfoot>
189     <tbody class="filterclass">
190         [% FOREACH order IN loop_received %]
191             <tr>
192                 <td><a href="/cgi-bin/koha/acqui/basket.pl?basketno=[% order.basketno | uri %]"> [% order.basketname | html %] ([% order.basketno | html %])</a></td>
193                 <td>
194                   [% IF order.basketgroupid %]
195                   <a href="/cgi-bin/koha/acqui/basketgroup.pl?op=add&amp;booksellerid=[% booksellerid | uri %]">[% order.basketgroupname | html %] ([% order.basketgroupid | html %])</a>
196                   [% ELSE %]
197                     No basket group
198                   [% END %]
199                 </td>
200                 <td>
201                   <a href="neworderempty.pl?ordernumber=[% order.ordernumber | uri %]&amp;booksellerid=[% booksellerid | uri %]">[% order.ordernumber | html %]</a>
202                   [% IF (order.parent_ordernumber && (order.parent_ordernumber != order.ordernumber)) %]
203                     (<a href="neworderempty.pl?ordernumber=[% order.parent_ordernumber | uri %]&amp;booksellerid=[% booksellerid | uri %]" title="Original order line">[% order.parent_ordernumber | html %]</a>)
204                   [% END %]
205                 </td>
206                 <td>
207                   [% IF order.total_holds > 0 %]
208                     [% IF order.item_holds > 0 %]
209                       <span class="error"><a href="/cgi-bin/koha/reserve/request.pl?biblionumber=[% order.biblionumber | uri %]">[% order.item_holds | html %]</a></span>
210                     [% ELSE %]
211                       0
212                     [% END %]
213                     /
214                     <span class="error"><a href="/cgi-bin/koha/reserve/request.pl?biblionumber=[% order.biblionumber | uri %]">[% order.total_holds | html %]</a></span>
215                   [% ELSE %]
216                     0
217                   [% END %]
218                 </td>
219                 <td><a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% order.biblionumber | uri %]">[% order.title | html %]</a>
220                 [% IF ( order.author ) %] / [% order.author | html %][% END %]
221                 [% IF ( order.isbn ) %] - [% order.isbn | html %][% END %]
222                 [% IF ( order.publishercode ) %]
223                     <br />Publisher: [% order.publishercode | html %]
224                     [%- IF    ( order.publicationyear > 0) -%], [% order.publicationyear | html %]
225                     [%- ELSIF ( order.copyrightdate   > 0) -%] [% order.copyrightdate | html %]
226                     [% END %]
227                 [% END %]
228                 [% IF ( order.suggestionid ) %]
229                     <br/>
230                     Suggested by: [% order.surnamesuggestedby | html %][% IF ( order.firstnamesuggestedby ) %], [% order.firstnamesuggestedby | html %] [% END %]
231                     (<a href="/cgi-bin/koha/suggestion/suggestion.pl?suggestionid=[% order.suggestionid | uri %]&amp;op=show">suggestion #[% order.suggestionid | html %]</a>)
232                 [% END %]
233                 <br />
234                 [% IF ( order.order_internalnote ) %]
235                     <p class="ordernote"><strong>Internal note: </strong>[% order.order_internalnote | html %] [<a href="/cgi-bin/koha/acqui/modordernotes.pl?ordernumber=[% order.ordernumber | uri %]&amp;referrer=/cgi-bin/koha/acqui/parcel.pl%3Finvoiceid=[% invoiceid | uri %]&type=internal">Change internal note</a>]</p>
236                 [% ELSE %]
237                     [<a href="/cgi-bin/koha/acqui/modordernotes.pl?ordernumber=[% order.ordernumber | uri %]&amp;referrer=/cgi-bin/koha/acqui/parcel.pl%3Finvoiceid=[% invoiceid | uri %]&type=internal">Add internal note</a>]
238                 [% END %]
239                 [% IF ( order.order_vendornote ) %]
240                     <p class="ordernote"><strong>Vendor note: </strong>[% order.order_vendornote | html %]</p>
241                 [% ELSE %]
242                     [<a href="/cgi-bin/koha/acqui/modordernotes.pl?ordernumber=[% order.ordernumber | uri %]&amp;referrer=/cgi-bin/koha/acqui/parcel.pl%3Finvoiceid=[% invoiceid | uri %]&type=vendor">Add vendor note</a>]
243                 [% END %]
244                 </td>
245                 <td>
246                   <a href="/cgi-bin/koha/acqui/showorder.pl?ordernumber=[% order.ordernumber | uri %]" class="previewData">[% tp('noun', 'Order') | html %]</a><br>
247                   <a href="/cgi-bin/koha/catalogue/showmarc.pl?id=[% order.biblionumber | uri %]" class="previewData">MARC</a><br>
248                   <a href="/cgi-bin/koha/catalogue/showmarc.pl?viewas=card&amp;id=[% order.biblionumber | uri %]" class="previewData">Card</a>
249                 </td>
250                 <td>[% order.replacementprice | $Price %]</td>
251                 <td>[% order.quantityreceived | html %]</td>
252                 <td>[% order.budget.budget_name | html %]</td>
253                 <td>[% order.ecost | $Price %]</td>
254                 <td>[% order.unitprice | $Price %]</td>
255                 <td>[% order.total | $Price %]</td>
256                 <td>
257                     [% IF loop_receive.cannot_cancel or ( order.basket.effective_create_items == "receiving" and loop_receive.holds > 0 ) %]
258                       [% IF loop_receive.cannot_cancel %]
259                         [% span_title = BLOCK %]
260                             Cannot cancel receipt of this order line because it
261                             was created from a partial receipt of order line no.
262                             [% order.parent_ordernumber | html %], which is
263                             already received. Try cancelling this one first and
264                             retry.
265                         [% END %]
266                       [% ELSE %]
267                         [%# FIXME Here we block the cancellation if holds exist. Actually it could be possible if items will be exist after the deletion %]
268                         [%# Some additional checks should be added in the pl file %]
269                         [% span_title = BLOCK %]
270                           Cannot cancel receipt of this order line because at least one reservation exists on the records.
271                         [% END %]
272                       [% END %]
273                       <span title="[% span_title | collapse | html %]">
274                           Can't cancel receipt
275                       </span>
276                     [% ELSE %]
277                         <a href="/cgi-bin/koha/acqui/parcel.pl?invoiceid=[% invoiceid | uri %]&op=cancelreceipt&ordernumber=[% order.ordernumber | uri %]">Cancel receipt</a>
278                     [% END %]
279                 </td>
280             </tr>
281         [% END %]
282     </tbody>
283     </table>
284     </form>
285
286     [% ELSE %]There are no received orders.[% END %]
287 </div>
288
289 <div id="dataPreview" class="modal fade" tabindex="-1" role="dialog" aria-labelledby="dataPreviewLabel" aria-hidden="true">
290     <div class="modal-dialog">
291     <div class="modal-content">
292     <div class="modal-header">
293         <button type="button" class="closebtn" data-dismiss="modal" aria-hidden="true">×</button>
294         <h3 id="dataPreviewLabel">MARC preview</h3>
295     </div>
296     <div class="modal-body">
297         <div id="loading"> <img src="[% interface | html %]/[% theme | html %]/img/spinner-small.gif" alt="" /> Loading </div>
298     </div>
299     <div class="modal-footer">
300         <button class="btn btn-default" data-dismiss="modal" aria-hidden="true">Close</button>
301     </div>
302     </div>
303     </div>
304 </div>
305
306 [% IF (invoiceclosedate) %]
307     <a href="/cgi-bin/koha/acqui/invoice.pl?invoiceid=[% invoiceid | uri %]">View invoice</a>
308 [% ELSE %]
309     <form action="/cgi-bin/koha/acqui/invoice.pl" method="get">
310         <input type="hidden" name="invoiceid" value="[% invoiceid | html %]" />
311         <fieldset class="action">
312             <input type="submit" value="Finish receiving" />
313         </fieldset>
314     </form>
315 [% END %]
316
317 [% END %]
318
319 </main>
320 </div> <!-- /.col-sm-10.col-sm-push-2 -->
321
322 <div class="col-sm-2 col-sm-pull-10">
323 <aside>
324
325 <form action="/cgi-bin/koha/acqui/parcel.pl" id="filterform" method="post">
326   <fieldset class="brief">
327     <h4>Filter</h4>
328     <ol>
329       <li>
330         <label for="summaryfilter">ISBN, author or title:</label>
331         <input type="text" name="summaryfilter" id="summaryfilter" value="[% summaryfilter | html %]"/>
332       </li>
333       <li>
334         <label for="basketfilter">Basket name:</label>
335         <input type="text" name="basketfilter" id="basketfilter" value="[% basketfilter | html %]"/>
336       </li>
337       <li>
338           <label for="basketgroupnamefilter">Basket group name:</label>
339           <input type="text" name="basketgroupnamefilter" id="basketgroupnamefilter" value="[% basketgroupnamefilter | html %]" />
340       </li>
341       <li>
342         <label for="orderfilter">Order line:</label>
343         <input type="text" name="orderfilter" id="orderfilter" value="[% orderfilter | html %]"/>
344       </li>
345       [% IF (UNIMARC) %]
346         <li>
347           <label for="eanfilter">EAN:</label>
348           <input type="text" name="eanfilter" id="eanfilter" value="[% eanfilter | html %]"/>
349         </li>
350       [% END %]
351     </ol>
352     <fieldset class="action">
353       <input type="hidden" value="search" name="op" />
354       <input type="hidden" value="[% invoiceid | html %]" name="invoiceid" />
355       <input type="submit" value="Filter" />
356       <a href="#" id="clear_form_filters">Clear</a>
357     </fieldset>
358   </fieldset>
359 </form>
360 [% INCLUDE 'acquisitions-menu.inc' %]
361     </aside>
362 </div> <!-- /.col-sm-2.col-sm-pull-10 -->
363 </div> <!-- /.row -->
364
365 [% MACRO jsinclude BLOCK %]
366     [% Asset.js("js/acquisitions-menu.js") | $raw %]
367     [% INCLUDE 'datatables.inc' %]
368     [% Asset.js("lib/jquery/plugins/jquery.dataTables.columnFilter.js") | $raw %]
369     [% Asset.js("lib/jquery/plugins/jquery.cookie.min.js") | $raw %]
370     <style>#dataPreview { width : 80%; } @media (max-width: 767px) { #dataPreview { margin: 0; width : auto; } }</style>
371     <script>
372         dt_overwrite_html_sorting_localeCompare();
373         var sticky_filters = [% sticky_filters | html %];
374
375         function query_from_filters( base_query, params ) {
376
377             var query_and = [];
378
379             if ( params.basket_name != "" ) {
380                 query_and.push( { "basket.name": { "like": '%'+params.basket_name+'%' } } );
381             }
382             if (params.basket_group != "") {
383                 query_and.push( { "basket.basket_group.name": { "like": '%'+params.basket_group+'%' } } );
384             }
385             if (params.summary != "") {
386                 query_and.push( { "-or": [{"biblio.title":  { "like": '%'+params.summary+'%' } },
387                             {"biblio.author": { "like": '%'+params.summary+'%' } },
388                             {"biblio.isbn":   { "like": '%'+params.summary+'%' } } ] } );
389             }
390             if (params.ean != "") {
391                 query_and.push( { "biblio.ean": params.ean } );
392             }
393
394             var query_params = [];
395
396             if ( query_and.length > 0 ) {
397                 query_and.push(base_query);
398                 query_params.push('q=' + encodeURIComponent(JSON.stringify({ "-and": query_and })));
399             }
400
401             if ( params.order_id != "" ) {
402                 query_params.push("order_id="+params.order_id);
403             }
404
405             return query_params;
406         }
407
408         $(document).ready(function(){
409
410             if ( $("#receivedt").length ) {
411                 var receivedt = $("#receivedt").dataTable($.extend(true, {}, dataTablesDefaults, {
412                     "bStateSave": true,
413                     "iCookieDuration": 60*60*24*1000, // 1000 days
414                     "iDisplayLength": 10,
415                     "aLengthMenu": [[5, 10, 20, 50, 100, -1], [5, 10, 20, 50, 100, _("All")]],
416                     "aoColumnDefs": [
417                         { "aTargets": [ 5, -1 ], "bSortable": false, "bSearchable": false },
418                     ],
419                     "aoColumns": [
420                         { "sType": "html" },
421                         { "sType": "html" },
422                         { "sType": "html" },
423                         { "sType": "num-html" },
424                         { "sType": "anti-the" },
425                         null,
426                         null,
427                         null,
428                         null,
429                         null,
430                         null,
431                         null,
432                         null
433                     ],
434                     "sPaginationType": "full"
435                 }));
436             }
437
438             var base_query = { "basket.vendor_id": [% booksellerid | html %]  };
439
440             var summary      = $("#summaryfilter").val();
441             var basket_name  = $("#basketfilter").val();
442             var basket_group = $("#basketgroupnamefilter").val();
443             var order_id     = $("#orderfilter").val();
444             var ean          = $("#eanfilter").val();
445
446             var query_params = query_from_filters(
447                 base_query,
448                 {
449                     "summary": summary,
450                     "basket_name": basket_name,
451                     "basket_group": basket_group,
452                     "order_id": order_id,
453                     "ean": (ean === undefined) ? '' : ean // ean == undefined if the DOM doens't have it
454                 }
455             );
456
457             var THE_query = query_params.join("&");
458
459             var pending_orders_url = '/api/v1/acquisitions/orders?only_active=1';
460             var pending_orders_table = $("#pending_orders").api({
461                 "ajax": {
462                     "url": pending_orders_url + '&' + THE_query
463                 },
464                 "header_filter": true,
465                 "embed": [
466                     "basket.basket_group",
467                     "biblio.active_orders+count",
468                     "biblio.holds+count",
469                     "biblio.items+count",
470                     "biblio.suggestions.suggester",
471                     "fund",
472                     "current_item_level_holds+count",
473                     "items"
474                 ],
475                 'dom': 'C<"top pager"ilpfB><"#filter_c">tr<"bottom pager"ip>',
476                 "drawCallback": function (settings) {
477                     $(".previewData").on("click", function(e){
478                         e.preventDefault();
479                         var ltitle = $(this).text();
480                         var page = $(this).attr("href");
481                         $("#dataPreviewLabel").text(ltitle);
482                         $("#dataPreview .modal-body").load(page + " div");
483                         $('#dataPreview').modal({show:true});
484                     });
485                 },
486                 "columnDefs": [ {
487                     "targets": [3,4,5,9],
488                     "render": function (data, type, row, meta) {
489                         if ( data != null ) {
490                             return data.escapeHtml();
491                         }
492                         else {
493                             return "";
494                         }
495                     }
496                 },
497                 {
498                     "targets": [8,10],
499                     "render": function (data, type, row, meta) {
500                         if ( data != null ) {
501                             return data.escapeHtml().format_price();
502                         }
503                         else {
504                             return "";
505                         }
506                     }
507                 } ],
508                 "columns": [
509                     { "data": "basket.name",
510                       "orderable": true,
511                       "render": function(data, type, row, meta) {
512                         if (type != 'display') return data;
513                         return "<a href=\"/cgi-bin/koha/acqui/basket.pl?basketno=" + row.basket.basket_id + "\">" + data + " (" + row.basket.basket_id + ")</a>";
514                       }
515                     },
516                     { "data": "basket.basket_group.name",
517                       "orderable": true,
518                       "render": function(data, type, row, meta) {
519                         if ( type != 'display' ) {
520                             if ( data == null ) {
521                                 return "";
522                             }
523                             else {
524                                 return data;
525                             }
526                         }
527                         if ( row.basket.basket_group_id == null ) {
528                             return _("No basket group");
529                         }
530                         else {
531                             return "<a href=\"/cgi-bin/koha/acqui/basketgroup.pl?op=add&amp;booksellerid="
532                                     + row.basket.vendor_id + "&amp;basketgroupid="
533                                     + row.basket.basket_group_id + "\">"
534                                     + row.basket.basket_group.name + " (" + row.basket.basket_group_id + ")</a>";
535                         }
536                       }
537                     },
538                     {
539                         "data": "order_id",
540                         "render": function(data, type, row, meta) {
541                             if (type != 'display') return data;
542                             return "<a href=\"neworderempty.pl?ordernumber="+data+"&amp;booksellerid="+row.basket.vendor_id+"\">"+data+"</a>";
543                         }
544                     },
545                     {
546                         "data": "biblio.author",
547                         "visible": false,
548                         "searchable": true,
549                         "orderable": false
550                     },
551                     {
552                         "data": "biblio.title",
553                         "visible": false,
554                         "searchable": true,
555                         "orderable": false
556                     },
557                     {
558                         "data": "biblio.isbn",
559                         "visible": false,
560                         "searchable": true,
561                         "orderable": false
562                     },
563                     {
564                         "data": function(row, type, val, meta) {
565                             var result = '';
566                             if ( row.biblio_id != null ) {
567                                 result = "<p><a href=\"/cgi-bin/koha/catalogue/detail.pl?biblionumber="+encodeURIComponent(row.biblio_id)+"\">"+row.biblio.title.escapeHtml()+"</a>";
568                                 if ( row.biblio.author != null )
569                                     result += _(" by ") + row.biblio.author.escapeHtml();
570                                 if ( row.biblio.isbn != null )
571                                     result += " &ndash; " + row.biblio.isbn.escapeHtml();
572                                 if ( row.biblio.publisher != null ) {
573                                     result += "<br/>" + _("Publisher: ") + row.biblio.publisher.escapeHtml();
574                                     if ( row.biblio.publication_year != null ) {
575                                         result += ", " + row.biblio.publication_year.escapeHtml();
576                                     }
577                                     else if ( row.biblio.copyright_date != null ) {
578                                         result += row.biblio.copyright_date.escapeHtml();
579                                     }
580                                 }
581                                 var suggestions = row.biblio.suggestions;
582                                 if ( suggestions != null && suggestions.length > 0 ) {
583                                     var suggestion = suggestions[0];
584                                     if ( suggestion.suggester != null ) {
585                                         var suggester = suggestion.suggester;
586                                         var suggested_by = [];
587                                         if ( suggester.surname != null ) {
588                                             suggested_by.push(suggester.surname.escapeHtml());
589                                         }
590                                         if ( suggester.firstname != null ) {
591                                             suggested_by.push(suggester.firstname.escapeHtml());
592                                         }
593
594                                             result += "<br/>" + _("Suggested by: ") +
595                                                         '<a href="/cgi-bin/koha/suggestion/suggestion.pl?suggestionid='
596                                                             + encodeURIComponent(suggestion.suggestionid)
597                                                             + '&amp;op=show">'
598                                                             + suggested_by.join(", ")
599                                                             + " (#" + suggestions[0].suggestionid + ")</a>"; // FIXME: could be changed if we allow matching multiple suggestions
600                                     }
601                                 }
602                                 result += '</p>';
603                             }
604
605                             var internal_note = row.internal_note;
606                             if ( internal_note != null && internal_note != '' ) {
607                                 result += '<p class="ordernote"><strong>'
608                                             + _("Internal note: ")
609                                             + '</strong>' + internal_note.escapeHtml()
610                                             + ' [<a href="/cgi-bin/koha/acqui/modordernotes.pl?ordernumber='
611                                             + encodeURIComponent(row.order_id) + '&amp;referrer=/cgi-bin/koha/acqui/parcel.pl%3Finvoiceid=[% invoiceid | uri %]'
612                                             + '&type=internal">' + _("Change internal note") + '</a>]</p>';
613                             }
614                             else {
615                                 result += ' [<a href="/cgi-bin/koha/acqui/modordernotes.pl?ordernumber='
616                                             + encodeURIComponent(row.order_id) + '&amp;referrer=/cgi-bin/koha/acqui/parcel.pl%3Finvoiceid=[% invoiceid | uri %]'
617                                             + '&type=internal">' + _("Add internal note") + '</a>]';
618                             }
619
620                             var vendor_note = row.vendor_note;
621                             if ( vendor_note != null && vendor_note != '' ) {
622                                 result += '<p class="ordernote"><strong>'
623                                             + _("Vendor note: ")
624                                             + '</strong>' + vendor_note.escapeHtml() + '</p>';
625                             }
626                             else {
627                                 result += ' [<a href="/cgi-bin/koha/acqui/modordernotes.pl?ordernumber='
628                                             + encodeURIComponent(row.order_id) + '&amp;referrer=/cgi-bin/koha/acqui/parcel.pl%3Finvoiceid=[% invoiceid | uri %]'
629                                             + '&type=vendor">' + _("Add vendor note") + '</a>]';
630                             }
631
632                             return result;
633                         },
634                         "orderable": false
635                     },
636                     {
637                         "data": function( row, type, val, meta) {
638                             var result = '<a href="/cgi-bin/koha/acqui/showorder.pl?ordernumber=' + encodeURIComponent(row.order_id) + '" class="previewData">' + _("Order") + '</a><br>'
639                                 + '<a href="/cgi-bin/koha/catalogue/showmarc.pl?id=' + encodeURIComponent(row.biblio_id) + '" class="previewData">' + _("MARC") + '</a><br>'
640                                 + '<a href="/cgi-bin/koha/catalogue/showmarc.pl?viewas=card&amp;id=' + encodeURIComponent(row.biblio_id) + '" class="previewData">' + _("Card") + '</a>';
641                             return result;
642                         },
643                         "orderable": false
644                     },
645                     {
646                         "data": "replacement_price"
647                     },
648                     {
649                         "data": "quantity",
650                         "orderable": true
651                     },
652                     {
653                         "data": "ecost"
654                     },
655                     {
656                         "data": function ( row, type, val, meta ) {
657                             return (row.quantity * row.ecost).format_price();
658                         },
659                         "orderable": false // FIXME: How can we do it in DBIC?
660                     },
661                     {
662                         "data": "fund_id",
663                         "render": function(data, type, row, meta) {
664                             if (type != 'display') return data.escapeHtml();
665                             return row.fund.name.escapeHtml();
666                         }
667                     },
668                     {
669                         "data": function( row, type, val, meta ) {
670                             return '<a href="orderreceive.pl?ordernumber='
671                                     + encodeURIComponent(row.order_id) + '&amp;invoiceid=[% invoiceid | uri %]' + '">'
672                                     + _("Receive") + '</a><br/>'
673                                     + '<a href="#" onclick="transfer_order_popup(' + row.order_id.escapeHtml() + '); return false;">'
674                                     + _("Transfer") + '</a>';
675                         },
676                         "orderable": false
677                     },
678                     {
679                         "data": function( row, type, val, meta ) {
680                             var result = "";
681
682                             if ( row.current_holds_count > 0 ) {
683                                 result += '<span class="button" title="'
684                                         + _("Can't cancel order, (%s) holds are linked with this order. Cancel holds first").format( row.holds_count.escapeHtml() ) + '">'
685                                         + _("Can't cancel order") + '</span><br/>';
686                             }
687                             else {
688                                 result += '<a href="/cgi-bin/koha/acqui/cancelorder.pl?ordernumber='
689                                             + encodeURIComponent(row.order_id)
690                                             + '&biblionumber=' + encodeURIComponent(row.biblio_id)
691                                             + '&referrer=/cgi-bin/koha/acqui/parcel.pl?invoiceid=[% invoiceid | uri %]">'
692                                             + _("Cancel order") + '</a><br/>';
693                             }
694
695                             if ( row.biblio != null ) {
696                                 if ( row.biblio.items_count - row.items.length > 0 ||
697                                     row.biblio.active_orders_count > 1 ||
698                                     row.biblio.subscriptions_count > 0 ||
699                                     row.biblio.holds_count > 0 ) { // biblio can be deleted
700                                     result += '<span class="button" title="'
701                                             + _("Can't delete catalog record, see constraints below") + '">'
702                                             + _("Can't cancel order and delete catalog record") + '</span><br>';
703                                 }
704                                 else {
705                                     result += '<a href="/cgi-bin/koha/acqui/cancelorder.pl?ordernumber='
706                                             + encodeURIComponent(row.order_id) + '&biblionumber=' + encodeURIComponent(row.biblio_id)
707                                             + '&del_biblio=1&referrer="/cgi-bin/koha/acqui/parcel.pl?invoiceid=[$ invoiceid | uri ]">'
708                                             + _("Cancel order and catalog record") + '</a><br/>';
709                                 }
710
711                                 if ( row.biblio.items_count - row.items.length > 0 ) {
712                                     result += '<strong title="'
713                                             + _("Can't delete catalog record, because of %s existing item(s)").format(row.items.length)
714                                             +'">' + (row.biblio.items_count - row.items.length) + _(" item(s) left") + '</strong><br/>';
715                                 }
716
717                                 if ( row.biblio.active_orders_count > 1 ) {
718                                     result += '<strong title="'
719                                             + _("Can't delete catalog record, delete other orders linked to it first") + '">'
720                                             + (row.biblio.active_orders_count - 1) + _(" order(s) left") + '</strong><br/>';
721                                 }
722
723                                 if ( row.biblio.subscriptions_count > 0 ) {
724                                     result += '<strong title="' + _("Can't delete catalog record, delete subscriptions first") + '">'
725                                             + _("%s subscription(s) left").format(row.biblio.subscriptions_count)
726                                             + '</strong><br>';
727                                 }
728
729                                 if ( row.biblio.holds_count > 0 ) {
730                                     result += '<strong title="' + _("Can't delete catalog record or order, cancel holds first") + '">'
731                                             + _("%s hold(s) left").format(row.biblio.holds_count) + '</strong>';
732                                 }
733                             }
734
735                             return result;
736                         },
737                         "orderable": false
738                     }
739                 ]
740             });
741
742             $("#filterform").on("submit", function(e) {
743                 e.preventDefault();
744
745                 var summary      = $("#summaryfilter").val();
746                 var basket_name  = $("#basketfilter").val();
747                 var basket_group = $("#basketgroupnamefilter").val();
748                 var order_id     = $("#orderfilter").val();
749                 var ean          = $("#eanfilter").val();
750
751                 // Save the filters in the cookie
752                 $.cookie("filter_parcel_summary", summary);
753                 $.cookie("filter_parcel_basketname", basket_name);
754                 $.cookie("filter_parcel_orderno", basket_group);
755                 $.cookie("filter_parcel_basketgroupname", order_id);
756                 $.cookie("filter_parcel_ean", ean);
757
758                 var query_params = query_from_filters(
759                     base_query,
760                     {
761                         "summary": summary,
762                         "basket_name": basket_name,
763                         "basket_group": basket_group,
764                         "order_id": order_id,
765                         "ean": (ean === undefined) ? '' : ean // ean == undefined if the HTML doens't have it
766                     }
767                 );
768
769                 if ( query_params.length > 0 ) {
770                     pending_orders_table.api().ajax.url( pending_orders_url + '&' + query_params.join("&") );
771                 }
772                 else {
773                     pending_orders_table.api().ajax.url( pending_orders_url + '&q=' + encodeURI(JSON.stringify(base_query)) );
774                 }
775                 pending_orders_table.api().ajax.reload( null, false );
776             });
777
778             $('#clear_form_filters').on("click", function(){
779                 $(this).closest('form').find("input[type=text], textarea").val("");
780                 pending_orders_table.api().ajax.url(pending_orders_url + '&q=' + encodeURI(JSON.stringify(base_query))).draw();
781             });
782
783             $(".previewData").on("click", function(e){
784                 e.preventDefault();
785                 var ltitle = $(this).text();
786                 var page = $(this).attr("href");
787                 $("#dataPreviewLabel").text(ltitle);
788                 $("#dataPreview .modal-body").load(page + " div");
789                 $('#dataPreview').modal({show:true});
790             });
791
792             $("#dataPreview").on("hidden.bs.modal", function(){
793                 $("#dataPreviewLabel").html("");
794                 $("#dataPreview .modal-body").html("<div id=\"loading\"><img src=\"[% interface | html %]/[% theme | html %]/img/spinner-small.gif\" alt=\"\" /> "+_("Loading")+"</div>");
795             });
796         });
797
798         // Case-insensitive version of jquery's contains function
799         jQuery.extend(jQuery.expr[':'], {
800             icontains : "jQuery(a).text().toUpperCase().indexOf(m[3].toUpperCase())>=0"
801         });
802
803         // Contains exactly function
804         jQuery.extend(jQuery.expr[':'], {
805             containsExactly: "$(a).text() == m[3]"
806         });
807
808         function transfer_order_popup(ordernumber) {
809         var url = "/cgi-bin/koha/acqui/transferorder.pl?"
810             + "ordernumber=" + ordernumber
811             window.open(url, 'TransferOrder');
812         }
813     </script>
814 [% END %]
815
816 [% INCLUDE 'intranet-bottom.inc' %]