Lines 408-413
sub GetBorrowersToExpunge {
Link Here
|
408 |
$query .= q| LEFT JOIN patron_list_patrons USING (borrowernumber)|; |
408 |
$query .= q| LEFT JOIN patron_list_patrons USING (borrowernumber)|; |
409 |
} |
409 |
} |
410 |
$query .= q| WHERE category_type <> 'S' |
410 |
$query .= q| WHERE category_type <> 'S' |
|
|
411 |
AND ( borrowers.flags IS NULL OR borrowers.flags = 0 ) |
411 |
AND tmp.guarantor_id IS NULL |
412 |
AND tmp.guarantor_id IS NULL |
412 |
|; |
413 |
|; |
413 |
my @query_params; |
414 |
my @query_params; |
414 |
- |
|
|