From: Mike Rylander Date: Wed, 16 Sep 2015 14:28:46 +0000 (-0400) Subject: webstaff: LP#1436980: Default copy circ count to 0 instead of undefined X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=668e875e0e815210686fa045c2d3065766165d3b;p=evergreen%2Fmasslnc.git webstaff: LP#1436980: Default copy circ count to 0 instead of undefined Signed-off-by: Mike Rylander --- diff --git a/Open-ILS/web/js/ui/default/staff/circ/patron/bills.js b/Open-ILS/web/js/ui/default/staff/circ/patron/bills.js index 9f1b29b17a..80be1feac9 100644 --- a/Open-ILS/web/js/ui/default/staff/circ/patron/bills.js +++ b/Open-ILS/web/js/ui/default/staff/circ/patron/bills.js @@ -584,6 +584,7 @@ function($scope, $q , $routeParams , egCore , egGridDataProvider , patronSvc , } // -- retrieve our data + $scope.total_circs = 0; // start with 0 instead of undefined egBilling.fetchXact(xact_id).then(function(xact) { $scope.xact = xact;