Bug 29788: Fix batch delete item
[koha.git] / serials / serials-search.pl
1 #!/usr/bin/perl
2
3 # Copyright 2012 Koha Team
4 #
5 # This file is part of Koha.
6 #
7 # Koha is free software; you can redistribute it and/or modify it
8 # under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
11 #
12 # Koha is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License
18 # along with Koha; if not, see <http://www.gnu.org/licenses>.
19
20
21 =head1 NAME
22
23 serials-search.pl
24
25 =head1 DESCRIPTION
26
27 this script is the search page for serials
28
29 =cut
30
31 use Modern::Perl;
32 use CGI qw ( -utf8 );
33 use C4::Auth qw( get_template_and_user );
34 use C4::Context;
35 use C4::Output qw( output_html_with_http_headers );
36 use C4::Serials qw( CloseSubscription ReopenSubscription SearchSubscriptions check_routing );
37 use Koha::AdditionalFields;
38
39 use Koha::DateUtils qw( dt_from_string );
40 use Koha::SharedContent;
41
42 my $query         = CGI->new;
43 my $title         = $query->param('title_filter') || '';
44 my $ISSN          = $query->param('ISSN_filter') || '';
45 my $EAN           = $query->param('EAN_filter') || '';
46 my $callnumber    = $query->param('callnumber_filter') || '';
47 my $publisher     = $query->param('publisher_filter') || '';
48 my $bookseller    = $query->param('bookseller_filter') || '';
49 my $biblionumber  = $query->param('biblionumber') || '';
50 my $branch        = $query->param('branch_filter') || '';
51 my $location      = $query->param('location_filter') || '';
52 my $expiration_date = $query->param('expiration_date_filter') || '';
53 my $routing       = $query->param('routing') || C4::Context->preference("RoutingSerials");
54 my $searched      = $query->param('searched') || 0;
55 my $mana      = $query->param('mana') || 0;
56 my @subscriptionids = $query->multi_param('subscriptionid');
57 my $op            = $query->param('op');
58
59 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
60     {
61         template_name   => "serials/serials-search.tt",
62         query           => $query,
63         type            => "intranet",
64         flagsrequired   => { serials => '*' },
65     }
66 );
67
68 if ( $op and $op eq "close" ) {
69     for my $subscriptionid ( @subscriptionids ) {
70         C4::Serials::CloseSubscription( $subscriptionid );
71     }
72 } elsif ( $op and $op eq "reopen" ) {
73     for my $subscriptionid ( @subscriptionids ) {
74         C4::Serials::ReopenSubscription( $subscriptionid );
75     }
76 }
77
78
79 my @additional_fields = Koha::AdditionalFields->search( { tablename => 'subscription', searchable => 1 } );
80 my @additional_field_filters;
81 for my $field ( @additional_fields ) {
82     my $value = $query->param( 'additional_field_' . $field->id );
83     if ( defined $value and $value ne '' ) {
84         push @additional_field_filters, {
85             id => $field->id,
86             value => $value,
87         };
88     }
89 }
90
91 my $expiration_date_dt = $expiration_date ? dt_from_string( $expiration_date ) : undef;
92 my @subscriptions;
93 my $mana_statuscode;
94 if ($searched){
95     if ($mana) {
96         my $result = Koha::SharedContent::search_entities("subscription",{
97             title        => $title,
98             issn         => $ISSN,
99             ean          => $EAN,
100             publisher    => $publisher
101         });
102         $mana_statuscode = $result->{code};
103         @subscriptions = @{ $result->{data} };
104     }
105     else {
106         @subscriptions = SearchSubscriptions(
107         {
108             biblionumber => $biblionumber,
109             title        => $title,
110             issn         => $ISSN,
111             ean          => $EAN,
112             callnumber   => $callnumber,
113             publisher    => $publisher,
114             bookseller   => $bookseller,
115             branch       => $branch,
116             additional_fields => \@additional_field_filters,
117             location     => $location,
118             expiration_date => $expiration_date_dt,
119         });
120     }
121 }
122
123 if ($mana) {
124     $template->param(
125         subscriptions => \@subscriptions,
126         statuscode    => $mana_statuscode,
127         total         => scalar @subscriptions,
128         title_filter  => $title,
129         ISSN_filter   => $ISSN,
130         EAN_filter    => $EAN,
131         callnumber_filter => $callnumber,
132         publisher_filter => $publisher,
133         bookseller_filter  => $bookseller,
134         branch_filter => $branch,
135         location_filter => $location,
136         expiration_date_filter => $expiration_date_dt,
137         done_searched => $searched,
138         routing       => $routing,
139         additional_field_filters => \@additional_field_filters,
140         additional_fields_for_subscription => \@additional_fields,
141         marcflavour   => (uc(C4::Context->preference("marcflavour"))),
142         mana => $mana,
143         search_only => 1
144     );
145 }
146 else
147 {
148     # to toggle between create or edit routing list options
149     if ($routing) {
150         for my $subscription ( @subscriptions) {
151             $subscription->{routingedit} = check_routing( $subscription->{subscriptionid} );
152         }
153     }
154
155     my (@openedsubscriptions, @closedsubscriptions);
156     for my $sub ( @subscriptions ) {
157         unless ( $sub->{closed} ) {
158             push @openedsubscriptions, $sub
159                 unless $sub->{cannotdisplay};
160         } else {
161             push @closedsubscriptions, $sub
162                 unless $sub->{cannotdisplay};
163         }
164     }
165
166     my @branches = Koha::Libraries->search( {}, { order_by => ['branchcode'] } );
167     my @branches_loop;
168     foreach my $b ( @branches ) {
169         my $selected = 0;
170         $selected = 1 if( defined $branch and $branch eq $b->branchcode );
171         push @branches_loop, {
172             branchcode  => $b->branchcode,
173             branchname  => $b->branchname,
174             selected    => $selected,
175         };
176     }
177
178     $template->param(
179         openedsubscriptions => \@openedsubscriptions,
180         closedsubscriptions => \@closedsubscriptions,
181         total         => @openedsubscriptions + @closedsubscriptions,
182         title_filter  => $title,
183         ISSN_filter   => $ISSN,
184         EAN_filter    => $EAN,
185         callnumber_filter => $callnumber,
186         publisher_filter => $publisher,
187         bookseller_filter  => $bookseller,
188         branch_filter => $branch,
189         location_filter => $location,
190         expiration_date_filter => $expiration_date_dt,
191         branches_loop => \@branches_loop,
192         done_searched => $searched,
193         routing       => $routing,
194         additional_field_filters => { map { $_->{id} => $_->{value} } @additional_field_filters },
195         additional_fields_for_subscription => \@additional_fields,
196         marcflavour   => (uc(C4::Context->preference("marcflavour"))),
197         mana => $mana
198     );
199 }
200 output_html_with_http_headers $query, $cookie, $template->output;