[Koha-bugs] [Bug 30751] Print autorenewal notice to console when running in verbose.

bugzilla-daemon at bugs.koha-community.org bugzilla-daemon at bugs.koha-community.org
Thu May 19 19:27:28 CEST 2022


https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30751

Nick Clemens <nick at bywatersolutions.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|Signed Off                  |Failed QA

--- Comment #3 from Nick Clemens <nick at bywatersolutions.com> ---
Right now, the error is not set in the issue object if not confirm:
$auto_renew->auto_renew_error($error)->store if $confirm;

I suspect we need:
$auto_renew->auto_renew_error($error)
$auto_renew->store if $confirm;

Additionally:
173         if ($confirm){
174             my $date_due = AddRenewal( $auto_renew->borrowernumber,
$auto_renew->itemnumber, $auto_renew->branchco    de, undef, undef, undef, 0 );
175             $auto_renew->auto_renew_error(undef)->store;
176         }


Otherwise the messages I get don't have the correct info/status

There may be other instances like this to check as well

-- 
You are receiving this mail because:
You are watching all bug changes.


More information about the Koha-bugs mailing list