From c1022667a8d14a7a4301f241ae74011fee15ece9 Mon Sep 17 00:00:00 2001 From: Fridolin Somers Date: Thu, 10 Oct 2024 11:43:24 +0200 Subject: [PATCH] Bug 38073: Add missing use in C4/SIP/ILS.pm Bug 25812 added some code with Koha::XXX objects. They must be added in used modules Test plan : Check SIP server still runs Signed-off-by: Brendan Lawlor Signed-off-by: Paul Derscheid Signed-off-by: Katrin Fischer --- C4/SIP/ILS.pm | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/C4/SIP/ILS.pm b/C4/SIP/ILS.pm index ab5d06c41b..284b93a018 100644 --- a/C4/SIP/ILS.pm +++ b/C4/SIP/ILS.pm @@ -18,7 +18,13 @@ use C4::SIP::ILS::Transaction::Renew; use C4::SIP::ILS::Transaction::RenewAll; use C4::SIP::ILS::Transaction; use C4::SIP::Sip qw( siplog ); + +use Koha::Account; +use Koha::Account::Lines; use Koha::DateUtils qw( dt_from_string output_pref ); +use Koha::Items; +use Koha::Libraries; +use Koha::Number::Price; my %supports = ( 'magnetic media' => 1, -- 2.39.5