@@ -, +, @@ -turn on claim returned -find some items with a 245b or add a 245b to some items -check those items out and mark them as claimed returned -on the borrowers /cgi-bin/koha/circ/circulation.pl page look at the return-claims-table -no subtitle -apply patch and clear browser cache, restart_all -now you should see the subtitle --- koha-tmpl/intranet-tmpl/prog/js/checkouts.js | 1 + svc/return_claims | 1 + 2 files changed, 2 insertions(+) --- a/koha-tmpl/intranet-tmpl/prog/js/checkouts.js +++ a/koha-tmpl/intranet-tmpl/prog/js/checkouts.js @@ -943,6 +943,7 @@ $(document).ready(function() { "mDataProp": function ( oObj ) { let title = '' + oObj.title + + ( oObj.subtitle ? oObj.subtitle : "" ) + ( oObj.enumchron || "" ) + ''; if ( oObj.author ) { --- a/svc/return_claims +++ a/svc/return_claims @@ -73,6 +73,7 @@ my $sql = qq{ biblio.biblionumber, biblio.title, + biblio.subtitle, biblio.author, items.enumchron, --