webstaff: default Check Number to 1
authorJason Etheridge <jason@esilibrary.com>
Mon, 14 Nov 2016 21:03:56 +0000 (16:03 -0500)
committerChris Sharp <csharp@georgialibraries.org>
Wed, 4 Jan 2017 13:01:14 +0000 (08:01 -0500)
instead of 0, so that it doesn't speedbump payments (of any type)

Signed-off-by: Jason Etheridge <jason@esilibrary.com>
Open-ILS/web/js/ui/default/staff/circ/patron/bills.js

index 1245a2b..4412c97 100644 (file)
@@ -140,7 +140,7 @@ function($scope , $q , $routeParams , egCore , egConfirmDialog , $location,
     billSvc.userId = $routeParams.id;
 
     // set up some defaults
-    $scope.check_number = 0;
+    $scope.check_number = 1;
     $scope.payment_amount = null;
     $scope.session_voided = 0;
     $scope.payment_type = 'cash_payment';