From 9c801dc346ed86b94d0955f2dbe03eee2e88c568 Mon Sep 17 00:00:00 2001 From: Katrin Fischer Date: Fri, 16 Jun 2023 16:57:51 +0000 Subject: [PATCH] Bug 33028: Add is_monetary to recall_overdue_fine and article_request_fee This patch marks the 2 missing monetary values for recal over due fines and article request fees as monetary. Signed-off-by: Martin Renvoize Signed-off-by: Katrin Fischer Signed-off-by: Tomas Cohen Arazi (cherry picked from commit e2634097c15d808d4e9a96e33efa9ab245bba88c) Signed-off-by: Fridolin Somers (cherry picked from commit feb6ceaa249b938e1214c4e4bb104f043d1b5bb4) Signed-off-by: Pedro Amorim --- Koha/CirculationRules.pm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Koha/CirculationRules.pm b/Koha/CirculationRules.pm index 5f6d31c851..b06f8fd12c 100644 --- a/Koha/CirculationRules.pm +++ b/Koha/CirculationRules.pm @@ -83,6 +83,7 @@ our $RULE_KINDS = { }, article_request_fee => { scope => [ 'branchcode', 'categorycode' ], + is_monetary => 1, }, open_article_requests_limit => { scope => [ 'branchcode', 'categorycode' ], @@ -202,6 +203,7 @@ our $RULE_KINDS = { }, recall_overdue_fine => { scope => [ 'branchcode', 'categorycode', 'itemtype' ], + is_monetary => 1, }, recall_shelf_time => { scope => [ 'branchcode', 'categorycode', 'itemtype' ], -- 2.20.1