Lines 50-56
my $user = $input->param("user") // '';
Link Here
|
50 |
my @actions = $input->multi_param("actions"); |
50 |
my @actions = $input->multi_param("actions"); |
51 |
my @interfaces = $input->multi_param("interfaces"); |
51 |
my @interfaces = $input->multi_param("interfaces"); |
52 |
my $object = $input->param("object"); |
52 |
my $object = $input->param("object"); |
53 |
my $object_type = $input->param("object_type") // ''; |
|
|
54 |
my $info = $input->param("info"); |
53 |
my $info = $input->param("info"); |
55 |
my $datefrom = $input->param("from"); |
54 |
my $datefrom = $input->param("from"); |
56 |
my $dateto = $input->param("to"); |
55 |
my $dateto = $input->param("to"); |
Lines 128-134
if ($do_it) {
Link Here
|
128 |
$search_params{action} = { -in => [ @actions ] } if ( defined $actions[0] && $actions[0] ne '' ); |
127 |
$search_params{action} = { -in => [ @actions ] } if ( defined $actions[0] && $actions[0] ne '' ); |
129 |
$search_params{interface} = { -in => [ @interfaces ] } if ( defined $interfaces[0] && $interfaces[0] ne '' ); |
128 |
$search_params{interface} = { -in => [ @interfaces ] } if ( defined $interfaces[0] && $interfaces[0] ne '' ); |
130 |
|
129 |
|
131 |
if ( @modules == 1 && $object_type eq 'biblio' ) { |
130 |
if ( @modules == 1 ) { |
132 |
# Handle 'Modification log' from cataloguing |
131 |
# Handle 'Modification log' from cataloguing |
133 |
my $biblio = Koha::Biblios->find( $object ); |
132 |
my $biblio = Koha::Biblios->find( $object ); |
134 |
my @itemnumbers = $biblio->items->get_column('itemnumber'); |
133 |
my @itemnumbers = $biblio->items->get_column('itemnumber'); |
135 |
- |
|
|