Lines 139-145
sub checkout {
Link Here
|
139 |
} elsif ($patron->expired) { |
139 |
} elsif ($patron->expired) { |
140 |
$circ->screen_msg("Patron expired"); |
140 |
$circ->screen_msg("Patron expired"); |
141 |
} elsif ($patron->fine_blocked) { |
141 |
} elsif ($patron->fine_blocked) { |
142 |
$circ->screen_msg("Patron has fines"); |
142 |
if ( !C4::Context->preference("IssuingInProcess") ) { |
|
|
143 |
$circ->screen_msg("Patron has fines"); |
144 |
} |
143 |
} else { |
145 |
} else { |
144 |
$circ->screen_msg("Patron blocked"); |
146 |
$circ->screen_msg("Patron blocked"); |
145 |
} |
147 |
} |
146 |
- |
|
|