26 Jun
2024
26 Jun
'24
12:38 a.m.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36741 --- Comment #6 from David Cook <dcook@prosentient.com.au> --- (In reply to Lucas Gass from comment #5)
If you use [% NEXT IF (checkout.auto_renew_error == 'auto_too_soon') %] will it not lead to an erroneous count here:
"There were [% error %] items that were not renewed."
?
Nope. auto_too_soon isn't added to the error count, so it would actually be more accurate. $renew_digest->{ $auto_renew->branchcode }->{ $auto_renew->borrowernumber }->{error}++ unless $success || $error eq 'auto_too_soon'; $renew_digest->{ $auto_renew->borrowernumber }->{error}++ unless $success || $error eq 'auto_too_soon'; -- You are receiving this mail because: You are watching all bug changes.