@@ -, +, @@ /cgi-bin/koha/ilsdi.pl?service=GetPatronInfo&patron_id=X /cgi-bin/koha/ilsdi.pl?service=GetPatronInfo&patron_id=X --- C4/ILSDI/Services.pm | 3 +++ 1 file changed, 3 insertions(+) --- a/C4/ILSDI/Services.pm +++ a/C4/ILSDI/Services.pm @@ -480,6 +480,9 @@ sub GetPatronInfo { $borrower->{'attributes'} = $attrs; } + # Add is expired information + $borrower->{'is_expired'} = $patron->is_expired ? 1 : 0; + return $borrower; } --