This patch adds the display of the renewals modal when appropriate. A "View" link is displayed next to renewals count where appropriate. Clicking the link opens the modal that displays the logged renewals. Sponsored-by: Loughborough University Signed-off-by: Myka Kennedy Stephens <mkstephens@lancasterseminary.edu> Signed-off-by: Owen Leonard <oleonard@myacpl.org> Signed-off-by: Bouzid Fergani <bouzid.fergani@inlibro.com> Signed-off-by: Ben Veasey <B.T.Veasey@lboro.ac.uk> Rescued-by: Martin Renvoize <martin.renvoize@ptfs-europe.com> I rescued this patchset by squashing previous work and updating it to utilise the new renewals API routes introduced in bug 30275. Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com> Signed-off-by: Owen Leonard <oleonard@myacpl.org> Signed-off-by: Katrin Fischer <katrin.fischer@bsz-bw.de> Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
25 lines
1.2 KiB
JavaScript
25 lines
1.2 KiB
JavaScript
$(document).ready(function(){
|
|
// Display the modal containing patron renewals details
|
|
$('.patron_renewals_view').on('click', function(e) {
|
|
e.preventDefault();
|
|
$('#patronRenewals #incomplete').html('').hide();
|
|
$('#patronRenewals #results').html('').hide();
|
|
$('#patronRenewals').modal({show:true});
|
|
var renewals = $(this).data('renewals');
|
|
var checkoutID = $(this).data('issueid');
|
|
$('#patronRenewals #retrieving').show();
|
|
$.get({ 'url': '/api/v1/checkouts/'+checkoutID+'/renewals', 'headers': { 'x-koha-embed': 'renewer' } }, function(data) {
|
|
if (data.length < renewals) {
|
|
$('#patronRenewals #incomplete').append(renewed_prop.format(data.length, renewals)).show();
|
|
}
|
|
var items = data.map(function(item) {
|
|
return createLi(item);
|
|
});
|
|
$('#patronRenewals #retrieving').hide();
|
|
$('#patronRenewals #results').append(items).show();
|
|
});
|
|
});
|
|
function createLi(renewal) {
|
|
return '<li><span style="font-weight:bold">' + renewal.timestamp + '</span> ' + renewed + ' <span style="font-weight:bold">' + renewal.renewer.firstname + ' ' + renewal.renewer.surname + '</li>';
|
|
}
|
|
});
|