@@ -, +, @@ hold found value is "T" than the logged-in library library other than the logged-in library --> Note that the Holds tab on Patron A's account detail page correctly shows that their hold is in-transit --> Note that the Holds tab on Patron B's account detail page incorrectly shows that their hold on the same item is also in-transit --> Confirm that the holds tab on Patron A's account still correctly says their hold is in-transit --> Confirm that the holds tab on Patron B's account now correctly shows a blank status for their hold --> Confirm that the holds tab on Patron B's account now correctly says their hold is in-transit --- koha-tmpl/intranet-tmpl/prog/js/holds.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/js/holds.js +++ a/koha-tmpl/intranet-tmpl/prog/js/holds.js @@ -300,9 +300,9 @@ $(document).ready(function() { } - } else if ( oObj.transferred ) { + } else if ( oObj.found == "T" && oObj.transferred ) { data += __("Item is in transit from %s since %s").format(oObj.from_branch, oObj.date_sent); - } else if ( oObj.not_transferred ) { + } else if ( oObj.found == "T" && oObj.not_transferred ) { data += __("Item hasn't been transferred yet from %s").format(oObj.not_transferred_by); } data += ""; --