This means that operator does not have to select the
previous default of "0" in the control to clear it out.
Signed-off-by: Galen Charlton <gmc@esilibrary.com>
Signed-off-by: Kathy Lussier <klussier@masslnc.org>
// set up some defaults
$scope.check_number = 0;
- $scope.payment_amount = 0;
+ $scope.payment_amount = null;
$scope.session_voided = 0;
$scope.payment_type = 'cash_payment';
$scope.focus_payment = true;
function refreshDisplay() {
patronSvc.fetchUserStats();
billSvc.fetchSummary().then(function(s) {$scope.summary = s});
- $scope.payment_amount = 0;
+ $scope.payment_amount = null;
$scope.gridControls.refresh();
}