@@ -, +, @@ is disabled - Make sure ClaimReturnedLostValue is empty - Go to a patron account - Check out an item - Make the claims returned column visible in the table of checkouts --- koha-tmpl/intranet-tmpl/prog/js/checkouts.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) --- a/koha-tmpl/intranet-tmpl/prog/js/checkouts.js +++ a/koha-tmpl/intranet-tmpl/prog/js/checkouts.js @@ -588,8 +588,10 @@ $(document).ready(function() { if ( oObj.return_claim_id ) { content = '' + oObj.return_claim_created_on_formatted + ''; - } else { + } else if ( ClaimReturnedLostValue ) { content = ' ' + __("Claim returned") + ''; + } else { + content = ' ' + __("Claim returned") + ''; } return content; } --