@@ -, +, @@ modules --- C4/Accounts.pm | 3 +-- C4/Circulation.pm | 3 +-- C4/Overdues.pm | 3 +-- Koha/Account.pm | 3 +-- 4 files changed, 4 insertions(+), 8 deletions(-) --- a/C4/Accounts.pm +++ a/C4/Accounts.pm @@ -26,9 +26,8 @@ use C4::Members; use C4::Circulation qw(ReturnLostItem); use C4::Log qw(logaction); use Koha::Account; -use Koha::Account::Line; use Koha::Account::Lines; -use Koha::Account::Offset; +use Koha::Account::Offsets; use Data::Dumper qw(Dumper); --- a/C4/Circulation.pm +++ a/C4/Circulation.pm @@ -55,8 +55,7 @@ use Koha::Holds; use Koha::RefundLostItemFeeRule; use Koha::RefundLostItemFeeRules; use Koha::Account::Lines; -use Koha::Account::Line; -use Koha::Account::Offset; +use Koha::Account::Offsets; use Carp; use List::MoreUtils qw( uniq ); use Scalar::Util qw( looks_like_number ); --- a/C4/Overdues.pm +++ a/C4/Overdues.pm @@ -34,9 +34,8 @@ use C4::Accounts; use C4::Log; # logaction use C4::Debug; use Koha::DateUtils; -use Koha::Account::Line; use Koha::Account::Lines; -use Koha::Account::Offset; +use Koha::Account::Offsets; use Koha::IssuingRules; use Koha::Libraries; --- a/Koha/Account.pm +++ a/Koha/Account.pm @@ -25,9 +25,8 @@ use Data::Dumper; use C4::Log qw( logaction ); use C4::Stats qw( UpdateStats ); -use Koha::Account::Line; use Koha::Account::Lines; -use Koha::Account::Offset; +use Koha::Account::Offsets; use Koha::DateUtils qw( dt_from_string ); =head1 NAME --