From: Jeff Davis <jdavis@sitka.bclibraries.ca>
Date: Wed, 14 Mar 2018 22:10:23 +0000 (-0700)
Subject: LP#1743045: skip redundant grid refresh on checkin
X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=59e796a9ecb056b9f829a37f7d05dcef26cc3d24;p=contrib%2FConifer.git

LP#1743045: skip redundant grid refresh on checkin

Signed-off-by: Jeff Davis <jdavis@sitka.bclibraries.ca>
Signed-off-by: Remington Steed <rjs7@calvin.edu>
Signed-off-by: Bill Erickson <berickxx@gmail.com>
---

diff --git a/Open-ILS/web/js/ui/default/staff/circ/checkin/app.js b/Open-ILS/web/js/ui/default/staff/circ/checkin/app.js
index 24e4a3baa9..d922f98fdc 100644
--- a/Open-ILS/web/js/ui/default/staff/circ/checkin/app.js
+++ b/Open-ILS/web/js/ui/default/staff/circ/checkin/app.js
@@ -189,7 +189,6 @@ function($scope , $q , $window , $location , $timeout , egCore , checkinSvc , eg
 
         // track the item in the grid before sending the request
         checkinSvc.checkins.unshift(row_item);
-        checkinGrid.refresh();
 
         egCirc.checkin(params, options).then(
         function(final_resp) {