(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 <galen.charlton@liblime.com>
This commit is contained in:
Nahuel ANGELINETTI 2009-06-15 12:19:37 +02:00 committed by Galen Charlton
parent d3c734c750
commit fc798b0e8d

View file

@ -27,6 +27,7 @@ use C4::Items;
use C4::Dates qw/format_date format_date_in_iso/; use C4::Dates qw/format_date format_date_in_iso/;
use C4::Koha; use C4::Koha;
use C4::Branch; # GetBranches use C4::Branch; # GetBranches
use C4::Circulation;
my $input = new CGI; my $input = new CGI;
my $minlocation=$input->param('minlocation') || ''; my $minlocation=$input->param('minlocation') || '';