Koha/koha-tmpl/intranet-tmpl/prog/js/ill-batch.js
Koha Development Team d659526b5a
Bug 38664: Tidy the whole codebase
This commit is generated using:
  % perl misc/devel/tidy.pl
*within* ktd, to get the same version of perltidy than what will be used
by our CI (currently v20230309).

Signed-off-by: Katrin Fischer <katrin.fischer@bsz-bw.de>
2025-02-11 14:58:24 +01:00

42 lines
1.3 KiB
JavaScript

(function () {
// Enable the modal to be opened from anywhere
// If we're working with an existing batch, set the ID so the
// modal can access it
window.openBatchModal = function (id, backend) {
var idEl = document.getElementById("ill-batch-details");
idEl.dataset.backend = backend;
if (id) {
idEl.dataset.batchId = id;
}
$("#ill-batch-modal").modal("show");
};
// Make a batch API call, returning the resulting promise
window.doBatchApiRequest = function (url, options) {
var batchListApi = "/api/v1/ill/batches";
var fullUrl = batchListApi + (url ? url : "");
return doApiRequest(fullUrl, options);
};
// Make a "create local ILL submission" call
window.doCreateSubmission = function (body, options) {
options = Object.assign(options || {}, {
headers: {
"Content-Type": "application/json",
},
method: "POST",
body: JSON.stringify(body),
});
return doApiRequest("/api/v1/ill/requests", options);
};
// Make an API call, returning the resulting promise
window.doApiRequest = function (url, options) {
return fetch(url, options);
};
// Display an API error
window.handleApiError = function (error) {
alert(error);
};
})();