https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36741 --- Comment #7 from Lucas Gass <lucas@bywatersolutions.com> --- (In reply to David Cook from comment #6)
(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';
Ah, great! -- You are receiving this mail because: You are watching all bug changes.