From d8b356d4410ed55a3e7cf9044beb2ddc3b419182 Mon Sep 17 00:00:00 2001 From: rangi Date: Wed, 19 Jun 2002 01:04:47 +0000 Subject: [PATCH] Fixing issues which i broke just before ... perhaps one more commit today. Issues used to pop up a payment window when a borrower had finished issuing and had money to pay. We seem to have lost that, ill try and get it back --- circ/circulation.pl | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/circ/circulation.pl b/circ/circulation.pl index 95f3d993bb..ffcfcc4a43 100755 --- a/circ/circulation.pl +++ b/circ/circulation.pl @@ -70,9 +70,9 @@ my $borrowernumber = $query->param('borrnumber'); # check and see if we should print my $print=$query->param('print'); my $barcode = $query->param('barcode'); -#if ($barcode eq '' ){ -# $print = 'yes'; -#} +if ($barcode eq '' && $print eq 'maybe'){ + $print = 'yes'; +} if ($print eq 'yes' && $borrowernumber ne ''){ printslip(\%env,$borrowernumber); $query->param('borrnumber',''); @@ -193,7 +193,8 @@ my $cardnumberinput = << "EOF"; Enter borrower card number
or partial last name
- + + EOF @@ -317,7 +318,7 @@ my $barcodeentrytext = <<"EOF"; - + -- 2.39.2