From 4613329b336afca75c794a0a3b28cea145df7d74 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. --- 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.30.2