Bug 22563: Typo in query (manualinvoice)
[koha-equinox.git] / C4 / Accounts.pm
index 3049116..34a3ef9 100644 (file)
@@ -163,7 +163,7 @@ sub manualinvoice {
           ? $checkouts->next
           : Koha::Old::Checkouts->search(
             { itemnumber => $itemnum, borrowernumber => $borrowernumber },
-            { order_by   => { 'DESC' => 'returndate' }, rows => 1 }
+            { order_by   => { -desc => 'returndate' }, rows => 1 }
         )->next;
         $issue_id = $checkout ? $checkout->issue_id : undef;
     }