From ca745742802705bce8bd9f04e48133037f618f4c Mon Sep 17 00:00:00 2001
From: Fridolin Somers <fridolin.somers@biblibre.com>
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
---
 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.47.0