X-Git-Url: http://git.rot13.org/?a=blobdiff_plain;f=tools%2Finventory.pl;h=5e7b198af70caebddbd4908de937e1bf84a45308;hb=aa114f53499b9cffde0571fe7e08622f9c9a332a;hp=f8903e5e7beec73e9686be4d3249002ad4e52984;hpb=b5ee2f201bed91a38ff2c1c527cbf19adc76fabc;p=koha.git diff --git a/tools/inventory.pl b/tools/inventory.pl index f8903e5e7b..5e7b198af7 100755 --- a/tools/inventory.pl +++ b/tools/inventory.pl @@ -39,7 +39,7 @@ use C4::Circulation; my $minlocation=$input->param('minlocation') || ''; my $maxlocation=$input->param('maxlocation'); $maxlocation=$minlocation.'Z' unless ( $maxlocation || ! $minlocation ); -my $location=$input->param('location'); +my $location=$input->param('location') || ''; my $itemtype=$input->param('itemtype'); # FIXME note, template does not currently supply this my $ignoreissued=$input->param('ignoreissued'); my $datelastseen = $input->param('datelastseen'); @@ -48,7 +48,7 @@ my $markseen = $input->param('markseen'); $offset=0 unless $offset; my $pagesize = $input->param('pagesize'); $pagesize=50 unless $pagesize; -my $branchcode = $input->param('branchcode'); +my $branchcode = $input->param('branchcode') || ''; my $branch = $input->param('branch'); my $op = $input->param('op'); my $res; #contains the results loop @@ -74,9 +74,11 @@ for my $branch_hash (keys %$branches) { @branch_loop = sort {$a->{branchname} cmp $b->{branchname}} @branch_loop; my @authorised_value_list; -my $authorisedvalue_categories; +my $authorisedvalue_categories = ''; my $frameworks = getframeworks(); +$frameworks->{''} = {frameworkcode => ''}; # Add the default framework + for my $fwk (keys %$frameworks){ my $fwkcode = $frameworks->{$fwk}->{'frameworkcode'}; my $authcode = GetAuthValCode('items.location', $fwkcode); @@ -106,7 +108,7 @@ my $staton = {}; #authorized values that are ticked for my $authvfield (@$statuses) { $staton->{$authvfield->{fieldname}} = []; for my $authval (@{$authvfield->{values}}){ - if ( $input->param('status-' . $authvfield->{fieldname} . '-' . $authval->{id}) eq 'on' ){ + if ( defined $input->param('status-' . $authvfield->{fieldname} . '-' . $authval->{id}) && $input->param('status-' . $authvfield->{fieldname} . '-' . $authval->{id}) eq 'on' ){ push @{$staton->{$authvfield->{fieldname}}}, $authval->{id}; } } @@ -185,16 +187,16 @@ if ( ! ($uploadbarcodes && length($uploadbarcodes)>0 ) || ( $input->param('compa } } if ($markseen or $op) { - $res = GetItemsForInventory( $minlocation, $maxlocation, $location, $ignoreissued, $itemtype, $datelastseen, $branchcode, $branch, $offset, $pagesize, $staton ); + $res = GetItemsForInventory( $minlocation, $maxlocation, $location, $itemtype, $ignoreissued, $datelastseen, $branchcode, $branch, $offset, $pagesize, $staton ); $template->param(loop =>$res, nextoffset => ($offset+$pagesize), prevoffset => ($offset?$offset-$pagesize:0), ); } - if ( ( ( $input->param('compareinv2barcd') eq 'on' ) && ( scalar @brcditems != scalar @$res ) ) && length($uploadbarcodes) > 0 ){ + if ( defined $input->param('compareinv2barcd') && ( ( $input->param('compareinv2barcd') eq 'on' ) && ( scalar @brcditems != scalar @$res ) ) && length($uploadbarcodes) > 0 ){ if ( scalar @brcditems > scalar @$res ){ for my $brcditem (@brcditems) { - if (! grep(/$brcditem->{barcode}/, @$res) ){ + if (! grep( $_->{barcode} =~ /$brcditem->{barcode}/ , @$res) ){ $brcditem->{notfoundkoha} = 1; push @$res, $brcditem; } @@ -202,7 +204,7 @@ if ( ! ($uploadbarcodes && length($uploadbarcodes)>0 ) || ( $input->param('compa } else { my @notfound; for my $item (@$res) { - if ( ! grep(/$item->{barcode}/, @brcditems) ){ + if ( ! grep( $_->{barcode} =~ /$item->{barcode}/ , @brcditems) ){ $item->{notfoundbarcode} = 1; push @notfound, $item; } @@ -212,7 +214,7 @@ if ( ! ($uploadbarcodes && length($uploadbarcodes)>0 ) || ( $input->param('compa } } -if ($input->param('CSVexport') eq 'on'){ +if (defined $input->param('CSVexport') && $input->param('CSVexport') eq 'on'){ eval {use Text::CSV}; my $csv = Text::CSV->new or die Text::CSV->error_diag ();