Lines 1200-1206
async function load_patron_holds_table(biblio_id, split_data) {
Link Here
|
1200 |
hold_table_settings |
1200 |
hold_table_settings |
1201 |
); |
1201 |
); |
1202 |
$(table_id).on("draw.dt", function () { |
1202 |
$(table_id).on("draw.dt", function () { |
1203 |
var MSG_CANCEL_SELECTED = _("Cancel selected (%s)"); |
1203 |
var MSG_CANCEL_SELECTED = __("Cancel selected (%s)"); |
1204 |
$(".cancel_selected_holds").html( |
1204 |
$(".cancel_selected_holds").html( |
1205 |
MSG_CANCEL_SELECTED.format( |
1205 |
MSG_CANCEL_SELECTED.format( |
1206 |
$(".holds_table .select_hold:checked").length |
1206 |
$(".holds_table .select_hold:checked").length |
Lines 1367-1373
async function load_patron_holds_table(biblio_id, split_data) {
Link Here
|
1367 |
data: JSON.stringify(req), |
1367 |
data: JSON.stringify(req), |
1368 |
success: function (data) { |
1368 |
success: function (data) { |
1369 |
holdsQueueTable.api().ajax.reload(null, false); |
1369 |
holdsQueueTable.api().ajax.reload(null, false); |
1370 |
$(instance.input).attr("data-current-date", dateStr); |
1370 |
$(instance.input).attr( |
|
|
1371 |
"data-current-date", |
1372 |
dateStr |
1373 |
); |
1371 |
}, |
1374 |
}, |
1372 |
error: function (jqXHR, textStatus, errorThrown) { |
1375 |
error: function (jqXHR, textStatus, errorThrown) { |
1373 |
holdsQueueTable.api().ajax.reload(null, false); |
1376 |
holdsQueueTable.api().ajax.reload(null, false); |
1374 |
- |
|
|