From fc798b0e8d9605b8fbacdc07eb83f3925bf6fc2f Mon Sep 17 00:00:00 2001 From: Nahuel ANGELINETTI Date: Mon, 15 Jun 2009 12:19:37 +0200 Subject: [PATCH 1/1] (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: Galen Charlton --- 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.20.1