Skip to content

Commit

Permalink
MT5359 Overdue fines are not correctly displaid on OPAC user account
Browse files Browse the repository at this point in the history
Adding 'FU' category for display
  • Loading branch information
SMeynieux committed May 26, 2011
1 parent 8791a45 commit a41028e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion opac/opac-user.pl
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ BEGIN
foreach my $ac (@$accts) {
if ( $ac->{'itemnumber'} == $issue->{'itemnumber'} ) {
$charges += $ac->{'amountoutstanding'}
if $ac->{'accounttype'} eq 'F';
if $ac->{'accounttype'} =~/F/;
$charges += $ac->{'amountoutstanding'}
if $ac->{'accounttype'} eq 'L';
}
Expand Down

0 comments on commit a41028e

Please sign in to comment.