View | Details | Raw Unified | Return to bug 41484
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/js/checkouts.js (-6 / +5 lines)
Lines 388-394 function LoadIssuesTable() { Link Here
388
                                "<a href='/cgi-bin/koha/recalls/request.pl?biblionumber=" +
388
                                "<a href='/cgi-bin/koha/recalls/request.pl?biblionumber=" +
389
                                oObj.biblionumber +
389
                                oObj.biblionumber +
390
                                "'>" +
390
                                "'>" +
391
                                __("Recalled") +
391
                                __("Item recalled by another patron") +
392
                                "</a>" +
392
                                "</a>" +
393
                                "</span>";
393
                                "</span>";
394
394
Lines 400-406 function LoadIssuesTable() { Link Here
400
                                "<a href='/cgi-bin/koha/bookings/list.pl?biblionumber=" +
400
                                "<a href='/cgi-bin/koha/bookings/list.pl?biblionumber=" +
401
                                oObj.biblionumber +
401
                                oObj.biblionumber +
402
                                "'>" +
402
                                "'>" +
403
                                __("Booked") +
403
                                __("Item booked for another patron") +
404
                                "</a>" +
404
                                "</a>" +
405
                                "</span>";
405
                                "</span>";
406
                            span_style = "display: none";
406
                            span_style = "display: none";
Lines 411-417 function LoadIssuesTable() { Link Here
411
                                "<a href='/cgi-bin/koha/reserve/request.pl?biblionumber=" +
411
                                "<a href='/cgi-bin/koha/reserve/request.pl?biblionumber=" +
412
                                oObj.biblionumber +
412
                                oObj.biblionumber +
413
                                "'>" +
413
                                "'>" +
414
                                __("On hold") +
414
                                __("Item on hold for another patron") +
415
                                "</a>" +
415
                                "</a>" +
416
                                "</span>";
416
                                "</span>";
417
417
Lines 592-598 function LoadIssuesTable() { Link Here
592
                                "<a href='/cgi-bin/koha/recalls/request.pl?biblionumber=" +
592
                                "<a href='/cgi-bin/koha/recalls/request.pl?biblionumber=" +
593
                                oObj.biblionumber +
593
                                oObj.biblionumber +
594
                                "'>" +
594
                                "'>" +
595
                                __("Recalled") +
595
                                __("Item recalled by another patron") +
596
                                "</a>"
596
                                "</a>"
597
                            );
597
                            );
598
                        } else if (oObj.can_renew_error == "on_reserve") {
598
                        } else if (oObj.can_renew_error == "on_reserve") {
Lines 600-606 function LoadIssuesTable() { Link Here
600
                                "<a href='/cgi-bin/koha/reserve/request.pl?biblionumber=" +
600
                                "<a href='/cgi-bin/koha/reserve/request.pl?biblionumber=" +
601
                                oObj.biblionumber +
601
                                oObj.biblionumber +
602
                                "'>" +
602
                                "'>" +
603
                                __("On hold") +
603
                                __("Item on hold for another patron") +
604
                                "</a>"
604
                                "</a>"
605
                            );
605
                            );
606
                        } else if (oObj.materials) {
606
                        } else if (oObj.materials) {
607
- 

Return to bug 41484