From 426115805513e072bf63cd24b2d5aa4f5dbd7447 Mon Sep 17 00:00:00 2001 From: Jason Etheridge <jason@esilibrary.com> Date: Mon, 14 Nov 2016 16:03:56 -0500 Subject: [PATCH] webstaff: default Check Number to 1 instead of 0, so that it doesn't speedbump payments (of any type) Signed-off-by: Jason Etheridge <jason@esilibrary.com> Signed-off-by: Kathy Lussier <klussier@masslnc.org> --- Open-ILS/web/js/ui/default/staff/circ/patron/bills.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 1245a2bebe..4412c97f3c 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 @@ -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'; -- 2.11.0