From 01760f196216b4bca43148cbf102f6201a7f6639 Mon Sep 17 00:00:00 2001 From: Tomas Cohen Arazi Date: Tue, 4 Jan 2022 16:51:18 -0300 Subject: [PATCH] Bug 29794: Add missing include in delete_items.pl This patch adds a missing include so the script is no longer broken. To test: 1. Choose an item that is checked out and copy its barcode 2. Run: $ kshell k$ perl misc/cronjobs/delete_items.pl --verbose \ --where "barcode='39999000010831'" => FAIL: It explodes with: Can't locate object method "find" via package "Koha::Items"... 3. Apply this patch 4. Repeat 2 => SUCCESS: You get: Where statement: where barcode='39999000010831' Item '549' not deleted: book_on_loan 5. Sign off :-D --- misc/cronjobs/delete_items.pl | 2 ++ 1 file changed, 2 insertions(+) diff --git a/misc/cronjobs/delete_items.pl b/misc/cronjobs/delete_items.pl index 93a00c6c1f..3cbe5accc3 100755 --- a/misc/cronjobs/delete_items.pl +++ b/misc/cronjobs/delete_items.pl @@ -7,6 +7,8 @@ use C4::Context; use Modern::Perl; use Pod::Usage qw( pod2usage ); +use Koha::Items; + my $dbh = C4::Context->dbh(); my $query = { -- 2.34.1