From 0296ef5d1a8dbdc7ee68158f7d6671fe4d7b6584 Mon Sep 17 00:00:00 2001 From: Bill Erickson Date: Mon, 30 Jun 2014 16:22:08 -0400 Subject: [PATCH] items out grid improvements Signed-off-by: Bill Erickson --- .../src/templates/staff/circ/patron/t_items_out.tt2 | 21 +++++++++++++-------- .../web/js/ui/default/staff/circ/patron/checkout.js | 1 + 2 files changed, 14 insertions(+), 8 deletions(-) diff --git a/Open-ILS/src/templates/staff/circ/patron/t_items_out.tt2 b/Open-ILS/src/templates/staff/circ/patron/t_items_out.tt2 index 9fbd09b752..b8d00e9771 100644 --- a/Open-ILS/src/templates/staff/circ/patron/t_items_out.tt2 +++ b/Open-ILS/src/templates/staff/circ/patron/t_items_out.tt2 @@ -3,24 +3,29 @@ - - + + {{item.target_copy().barcode()}} - - - - - + + + + + {{item.target_copy().call_number().record().simple_record().title()}} + + + + + diff --git a/Open-ILS/web/js/ui/default/staff/circ/patron/checkout.js b/Open-ILS/web/js/ui/default/staff/circ/patron/checkout.js index 5be1d4b075..89e211f659 100644 --- a/Open-ILS/web/js/ui/default/staff/circ/patron/checkout.js +++ b/Open-ILS/web/js/ui/default/staff/circ/patron/checkout.js @@ -17,6 +17,7 @@ function($scope , $q , $modal , $routeParams , egCore , egUser , patronSvc , noncat_type : 'barcode', due_date : new Date() }; + $scope.gridDataProvider = egGridDataProvider.instance({ get : function(offset, count) { return this.arrayNotifier($scope.checkouts, offset, count); -- 2.11.0