|
Lines 361-367
sub GetMemberDetails {
Link Here
|
| 361 |
} |
361 |
} |
| 362 |
my $borrower = $sth->fetchrow_hashref; |
362 |
my $borrower = $sth->fetchrow_hashref; |
| 363 |
return unless $borrower; |
363 |
return unless $borrower; |
| 364 |
my ($amount) = GetMemberAccountRecords( $borrowernumber); |
364 |
my ($amount) = GetMemberAccountRecords($borrower->{borrowernumber}); |
| 365 |
$borrower->{'amountoutstanding'} = $amount; |
365 |
$borrower->{'amountoutstanding'} = $amount; |
| 366 |
# FIXME - patronflags calls GetMemberAccountRecords... just have patronflags return $amount |
366 |
# FIXME - patronflags calls GetMemberAccountRecords... just have patronflags return $amount |
| 367 |
my $flags = patronflags( $borrower); |
367 |
my $flags = patronflags( $borrower); |
| 368 |
- |
|
|