Bug 22564: Remove references to 'Rep' accounttype
[koha.git] / C4 / Circulation.pm
index 9a1bdae..c93ee3d 100644 (file)
@@ -2384,7 +2384,7 @@ sub _FixAccountForLostAndReturned {
     my $accountlines = Koha::Account::Lines->search(
         {
             itemnumber  => $itemnumber,
-            accounttype => { -in => [ 'L', 'Rep', 'W' ] },
+            accounttype => { -in => [ 'L', 'W' ] },
         },
         {
             order_by => { -desc => [ 'date', 'accountlines_id' ] }