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

(-)a/koha-tmpl/intranet-tmpl/prog/js/holds.js (-4 / +3 lines)
Lines 3-9 function display_pickup_location (state) { Link Here
3
    if ( state.needs_override === true ) {
3
    if ( state.needs_override === true ) {
4
        $text = $(
4
        $text = $(
5
            '<span>' + state.text + '</span> <span style="float:right;" title="' +
5
            '<span>' + state.text + '</span> <span style="float:right;" title="' +
6
            _("This pickup location is not allowed according to circulation rules") +
6
            __("This pickup location is not allowed according to circulation rules") +
7
            '"><i class="fa fa-exclamation-circle" aria-hidden="true"></i></span>'
7
            '"><i class="fa fa-exclamation-circle" aria-hidden="true"></i></span>'
8
        );
8
        );
9
    }
9
    }
Lines 330-336 $(document).ready(function() { Link Here
330
                            alert(__("Unable to resume, hold not found"));
330
                            alert(__("Unable to resume, hold not found"));
331
                        }
331
                        }
332
                        else {
332
                        else {
333
                            alert(_("Your request could not be processed. Check the logs"));
333
                            alert(__("Your request could not be processed. Check the logs"));
334
                        }
334
                        }
335
                        holdsTable.api().ajax.reload();
335
                        holdsTable.api().ajax.reload();
336
                    });
336
                    });
Lines 419-425 $(document).ready(function() { Link Here
419
                alert(__("Unable to suspend, hold not found"));
419
                alert(__("Unable to suspend, hold not found"));
420
            }
420
            }
421
            else {
421
            else {
422
                alert(_("Your request could not be processed. Check the logs"));
422
                alert(__("Your request could not be processed. Check the logs"));
423
            }
423
            }
424
            holdsTable.api().ajax.reload();
424
            holdsTable.api().ajax.reload();
425
        }).done(function() {
425
        }).done(function() {
426
- 

Return to bug 28377