Bug 23838: Add renewals modal
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>
This commit is contained in:
parent
b3c9e95fac
commit
968c5865e7
5 changed files with 59 additions and 3 deletions
|
@ -0,0 +1,4 @@
|
|||
<script>
|
||||
var renewed_prop = _("Note: %s out of %s renewals have been logged");
|
||||
var renewed = _("Renewed by");
|
||||
</script>
|
|
@ -0,0 +1,18 @@
|
|||
<div id="patronRenewals" class="modal fade" tabindex="-1" role="dialog" aria-labelledby="patronRenewalsLabel" aria-hidden="true">
|
||||
<div class="modal-dialog">
|
||||
<div class="modal-content">
|
||||
<div class="modal-header">
|
||||
<button type="button" class="closebtn" data-dismiss="modal" aria-hidden="true">×</button>
|
||||
<h3 id="patronRenewalsLabel"> Item renewals</h3>
|
||||
</div>
|
||||
<div class="modal-body">
|
||||
<div id="retrieving" class="alert" style="display:none">Retrieving renewals...</div>
|
||||
<div id="incomplete" class="alert" style="display:none"></div>
|
||||
<ul id="results" style="display:none"></ul>
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<button class="btn btn-default" data-dismiss="modal" aria-hidden="true">Close</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
|
@ -109,7 +109,12 @@
|
|||
</td>
|
||||
|
||||
<td><a href="/cgi-bin/koha/catalogue/moredetail.pl?itemnumber=[% issue.itemnumber | uri %]&biblionumber=[% issue.biblionumber | uri %]&bi=[% issue.biblioitemnumber | uri %]#item[% issue.itemnumber | uri %]">[% issue.barcode | html %]</a></td>
|
||||
<td>[% issue.renewals_count | html %]</td>
|
||||
<td>
|
||||
[% issue.renewals_count | html %]
|
||||
[% IF issue.renewals_count > 0 %]
|
||||
[ <a class="patron_renewals_view" data-renewals="[% issue.renewals_count | html %]" data-issueid="[% issue.issue_id %]" href="#">View</a> ]
|
||||
[% END %]
|
||||
</td>
|
||||
<td data-order="[% issue.issuedate | html %]">
|
||||
[% issue.issuedate |$KohaDates with_hours => 1 %]
|
||||
</td>
|
||||
|
@ -154,6 +159,9 @@
|
|||
[% Asset.js("js/members-menu.js") | $raw %]
|
||||
[% INCLUDE 'datatables.inc' %]
|
||||
[% INCLUDE 'columns_settings.inc' %]
|
||||
[% INCLUDE 'patron-renewal-modal.inc' %]
|
||||
[% INCLUDE 'patron-renewal-modal-strings.inc' %]
|
||||
[% Asset.js("js/patron-renewal-modal.js") | $raw %]
|
||||
<script id="js">
|
||||
$(document).ready(function() {
|
||||
var table_settings = [% TablesSettings.GetTableSettings('members', 'checkouthistory', 'checkouthistory-table', 'json') | $raw %];
|
||||
|
|
25
koha-tmpl/intranet-tmpl/prog/js/patron-renewal-modal.js
Normal file
25
koha-tmpl/intranet-tmpl/prog/js/patron-renewal-modal.js
Normal file
|
@ -0,0 +1,25 @@
|
|||
$(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>';
|
||||
}
|
||||
});
|
|
@ -27,8 +27,9 @@ use CGI qw ( -utf8 );
|
|||
use C4::Auth qw( get_template_and_user );
|
||||
use C4::Output qw( output_and_exit_if_error output_and_exit output_html_with_http_headers );
|
||||
use C4::Members qw( GetAllIssues );
|
||||
use List::MoreUtils qw( uniq );
|
||||
use List::MoreUtils qw( any uniq );
|
||||
use Koha::DateUtils qw( dt_from_string );
|
||||
use Koha::ActionLogs;
|
||||
|
||||
use Koha::Patrons;
|
||||
use Koha::Patron::Categories;
|
||||
|
@ -97,7 +98,7 @@ if (! $limit){
|
|||
$template->param(
|
||||
patron => $patron,
|
||||
readingrecordview => 1,
|
||||
loop_reading => $issues,
|
||||
loop_reading => $issues
|
||||
);
|
||||
output_html_with_http_headers $input, $cookie, $template->output;
|
||||
|
||||
|
|
Loading…
Reference in a new issue