Lines 639-645
sub IsMemberBlocked {
Link Here
|
639 |
LEFT JOIN issuingrules ON (issuingrules.itemtype=biblioitems.itemtype) }; |
639 |
LEFT JOIN issuingrules ON (issuingrules.itemtype=biblioitems.itemtype) }; |
640 |
} |
640 |
} |
641 |
$strsth.= |
641 |
$strsth.= |
642 |
qq{ WHERE finedays IS NOT NULL |
642 |
qq{ WHERE finedays IS NOT NULL AND finedays > 0 |
643 |
AND date_due < returndate |
643 |
AND date_due < returndate |
644 |
AND borrowernumber = ? |
644 |
AND borrowernumber = ? |
645 |
ORDER BY blockingdate DESC, blockedcount DESC |
645 |
ORDER BY blockingdate DESC, blockedcount DESC |
646 |
- |
|
|