|
Lines 356-362
sub GetMemberDetails {
Link Here
|
| 356 |
} |
356 |
} |
| 357 |
my $borrower = $sth->fetchrow_hashref; |
357 |
my $borrower = $sth->fetchrow_hashref; |
| 358 |
return unless $borrower; |
358 |
return unless $borrower; |
| 359 |
my ($amount) = GetMemberAccountRecords( $borrowernumber); |
359 |
my ($amount) = GetMemberAccountRecords($borrower->{borrowernumber}); |
| 360 |
$borrower->{'amountoutstanding'} = $amount; |
360 |
$borrower->{'amountoutstanding'} = $amount; |
| 361 |
# FIXME - patronflags calls GetMemberAccountRecords... just have patronflags return $amount |
361 |
# FIXME - patronflags calls GetMemberAccountRecords... just have patronflags return $amount |
| 362 |
my $flags = patronflags( $borrower); |
362 |
my $flags = patronflags( $borrower); |
| 363 |
- |
|
|