@@ -, +, @@ - If necessary, Enable claims returned functionality by defining a value in the ClaimReturnedLostValue system preference. - Open for checkout a patron who has items checked out. - From the table of checkouts, click "Claim returned" for one or more items. - Under the "Claims" tab, resolve one or more of the unresolved claims by choosing "Resolve" under the corresponding "Actions" menu. - Open the same "Actions" menu again and choose "Delete." - The claim should be deleted and there should be no error in the browser console. - Under the checkouts tab, the table should have refreshed so that the item which had been marked as "Claimed returned" no longer indicates an outstanding claim. --- koha-tmpl/intranet-tmpl/prog/js/checkouts.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/koha-tmpl/intranet-tmpl/prog/js/checkouts.js +++ a/koha-tmpl/intranet-tmpl/prog/js/checkouts.js @@ -1113,7 +1113,7 @@ $(document).ready(function() { type: 'DELETE', success: function( data ) { refreshReturnClaimsTable(); - issuesTable.api().ajax.reload(); + $("#issues-table").DataTable().api().ajax.reload(); } }); } --