Skip to content
Snippets Groups Projects
Commit 92ebbcdb authored by rtwilson's avatar rtwilson Committed by Robert Lange
Browse files

FOLIO: show open fines/fees instead of closed (#1978)

parent 1327ee6d
No related merge requests found
......@@ -1371,7 +1371,7 @@ class Folio extends AbstractAPI implements
*/
public function getMyFines($patron)
{
$query = ['query' => 'userId==' . $patron['id'] . ' and status.name==Closed'];
$query = ['query' => 'userId==' . $patron['id'] . ' and status.name==Open'];
$fines = [];
foreach ($this->getPagedResults(
'accounts', '/accounts', $query
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment