From e3d1e527e7cf23c20db8ed35c8de678d8f8a9d92 Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Tue, 21 Oct 2014 04:44:24 -0400 Subject: [PATCH] Bug 13122 - Patron holds table no longer display date item went in transit In Koha 3.14 and earlier, an item on hold and in transit would display the date the item was transferred. This is missing from the new ajax holds table. Test Plan: 1) Place an item on hold for delivery at a different library 2) Check the item in, confirm the hold and transfer 3) View the patron's holds tab on circulation.pl and/or moremember.pl 4) Note the item is show as in transit, but does not give the "since" date 5) Apply this patch 6) Note the in transit status now has a "since " Signed-off-by: Owen Leonard Signed-off-by: Katrin Fischer Small change, works as described. Signed-off-by: Tomas Cohen Arazi --- koha-tmpl/intranet-tmpl/prog/en/includes/strings.inc | 2 +- koha-tmpl/intranet-tmpl/prog/en/js/holds.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/strings.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/strings.inc index 5542875719..312df740c2 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/strings.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/strings.inc @@ -21,7 +21,7 @@ var UNTIL = _("until %s"); var ITEM_IS_WAITING = _("Item is waiting"); // var AT = _("at %s"); - var ITEM_IS_IN_TRANSIT = _("Item is in transit from %s"); + var ITEM_IS_IN_TRANSIT = _("Item is in transit from %s since %s"); var FROM = _("from"); var NOT_TRANSFERRED_YET = _("Item hasn't been transferred yet from %s"); var NO = _("No"); diff --git a/koha-tmpl/intranet-tmpl/prog/en/js/holds.js b/koha-tmpl/intranet-tmpl/prog/en/js/holds.js index 253f3396f6..60f747b9dd 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/js/holds.js +++ b/koha-tmpl/intranet-tmpl/prog/en/js/holds.js @@ -64,7 +64,7 @@ $(document).ready(function() { data += " " + AT.format( oObj.waiting_at ); } } else if ( oObj.transferred ) { - data += ITEM_IS_IN_TRANSIT.format( oObj.from_branch ); + data += ITEM_IS_IN_TRANSIT.format( oObj.from_branch, oObj.date_sent ); } else if ( oObj.not_transferred ) { data += NOT_TRANSFERRED_YET.format( oObj.not_transferred_by ); } -- 2.39.2