From 87ef2aee7c3606e24a82ecbba7d615c3969c9ff6 Mon Sep 17 00:00:00 2001 From: Nahuel ANGELINETTI Date: Mon, 15 Jun 2009 12:18:05 +0200 Subject: [PATCH] (bug #3329) Dependency missing in inventory.pl The called function AddReturn is in C4::Circulation which is not loaded, this patch do it. Signed-off-by: Henri-Damien LAURENT --- tools/inventory.pl | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/inventory.pl b/tools/inventory.pl index f3de234c54..8474d7d274 100755 --- a/tools/inventory.pl +++ b/tools/inventory.pl @@ -27,6 +27,7 @@ use C4::Items; use C4::Dates qw/format_date format_date_in_iso/; use C4::Koha; use C4::Branch; # GetBranches +use C4::Circulation; my $input = new CGI; my $minlocation=$input->param('minlocation') || ''; -- 2.39.5