Koha/koha-tmpl/intranet-tmpl/prog/js/pages/stockrotation.js
Jonathan Druart 6f222544c4 Bug 29648: Fix occurrences of GetColumns
We could add the configuration to these tables as well, but let go first
but the others (read: feeling lazy right now).

Signed-off-by: Owen Leonard <oleonard@myacpl.org>
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>

Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de>
Signed-off-by: Fridolin Somers <fridolin.somers@biblibre.com>
2022-04-27 11:20:45 -10:00

86 lines
3 KiB
JavaScript

/* global KohaTable columns_settings */
function init() {
$('#ajax_status').hide();
$('#ajax_saving_msg').hide();
$('#ajax_saving_icon').hide();
$('#ajax_success_icon').hide();
$('#ajax_failed_icon').hide();
$('#ajax_failed_msg').hide();
}
$(document).ready(function() {
var apiEndpoint = '/api/v1/rotas/';
init();
$('#sortable_stages').sortable({
handle: '.drag_handle',
placeholder: 'drag_placeholder',
update: function(event, ui) {
init();
$('#sortable_stages').sortable('disable');
var rotaId = document.getElementById('sortable_stages').dataset.rotaId;
$('#ajax_saving_msg').text(
document.getElementById('ajax_status').dataset.savingMsg
);
$('#ajax_saving_icon').show();
$('#ajax_saving_msg').show();
$('#ajax_status').fadeIn();
var stageId = ui.item[0].id.replace(/^stage_/, '');
var newIndex = ui.item.index();
var newPosition = newIndex + 1;
$.ajax({
method: 'PUT',
url: apiEndpoint + rotaId + '/stages/' + stageId + '/position',
processData: false,
contentType: 'application/json',
data: newPosition
})
.done(function(data) {
$('#ajax_success_msg').text(
document.getElementById('ajax_status').dataset.successMsg
);
$('#ajax_saving_icon').hide();
$('#ajax_success_icon').show();
$('#ajax_success_msg').show();
setTimeout(
function() {
$('#ajax_status').fadeOut();
},
700
);
})
.fail(function(jqXHR, status, error) {
$('#ajax_failed_msg').text(
document.getElementById('ajax_status').dataset.failedMsg +
error
);
$('#ajax_saving_icon').hide();
$('#ajax_failed_icon').show();
$('#ajax_failed_msg').show();
$('#sortable_stages').sortable('cancel');
})
.always(function() {
$('#sortable_stages').sortable('enable');
})
}
});
KohaTable("stock_rotation_manage_items", {
"aoColumnDefs": [
{ "bSortable": false, "bSearchable": false, 'aTargets': [ 'NoSort' ] },
{ "sType": "anti-the", "aTargets": [ "anti-the" ] }
],
"sPaginationType": "full",
"autoWidth": false,
}, stock_rotation_items_table_settings);
KohaTable("stock_rotation", {
"aoColumnDefs": [
{ "bSortable": false, "bSearchable": false, 'aTargets': [ 'NoSort' ] },
{ "sType": "anti-the", "aTargets": [ "anti-the" ] }
],
"sPaginationType": "full",
"autoWidth": false,
}, stock_rotation_table_settings);
});