Bug 30788: Fix warning in Overdues.pm when fine is empty in circ rules
authorKatrin Fischer <katrin.fischer@bsz-bw.de>
Fri, 20 May 2022 07:43:15 +0000 (09:43 +0200)
committerTomas Cohen Arazi <tomascohen@theke.io>
Wed, 1 Jun 2022 19:06:47 +0000 (16:06 -0300)
commit368bdcf4e95e1cbb93f53f1d5dd976b98f59bf29
tree640453a9e944e45348b5811db8656f33c93fc775
parent54a6c73c6d6e94554b7e4c15554e08d79e3eb578
Bug 30788: Fix warning in Overdues.pm when fine is empty in circ rules

Argument "" isn't numeric in multiplication (*) at /usr/share/koha/lib/C4/Overdues.pm

To test:
* Create a issuing rule where fine is empty, but a fine interval is set.
  Fine amount: empty
  To do this, remove the 0 displayed in the input field before saving.
  Fine charging interval: 5 or any other numeric value
  When to charge: Start of interval
  Fine grace period: 0
* Check out an item with the due date yester (use specify due date)
* Run misc/cronjobs/fines.pl -v
* You should see above warn in the output
* Apply patch
* Rerun fines.pl, there should be no warn.
* Run:
  t/db_dependent/Circulation/CalcFine.t
  t/db_dependent/Fines.t
  t/db_dependent/Circulation.t
  t/db_dependent/Overdues.t

Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
C4/Overdues.pm