From: Galen Charlton Date: Tue, 6 Feb 2018 21:44:32 +0000 (-0500) Subject: LP#1738249: further fix to checkout workstation X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=d5702dc7b7046030600637fcae74204d4c826b2a;p=working%2FEvergreen.git LP#1738249: further fix to checkout workstation Since accs.checkout_workstation contains the workstation associated with the initial loan (and not any subsequent renewals), use that. Signed-off-by: Galen Charlton --- diff --git a/Open-ILS/src/templates/staff/cat/item/t_list.tt2 b/Open-ILS/src/templates/staff/cat/item/t_list.tt2 index 89e3d5f05f..6980917bde 100644 --- a/Open-ILS/src/templates/staff/cat/item/t_list.tt2 +++ b/Open-ILS/src/templates/staff/cat/item/t_list.tt2 @@ -83,7 +83,7 @@ - + diff --git a/Open-ILS/web/js/ui/default/staff/circ/services/item.js b/Open-ILS/web/js/ui/default/staff/circ/services/item.js index 5793d5944d..9dc319e2f7 100644 --- a/Open-ILS/web/js/ui/default/staff/circ/services/item.js +++ b/Open-ILS/web/js/ui/default/staff/circ/services/item.js @@ -152,7 +152,6 @@ function(egCore , egCirc , $uibModal , $q , $timeout , $window , egConfirmDialog flatCopy._circ_summary = egCore.idl.toHash(copyData.circ_summary, true); flatCopy._circ_lib = copyData.circ.circ_lib(); flatCopy._duration = copyData.circ.duration(); - flatCopy._checkout_ws = copyData.circ.workstation().name(); } flatCopy.index = service.index++; service.copies.unshift(flatCopy);