Bug 10855: Squash several fixes
[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;
34 use C4::Branch;
35 use C4::Context;
36 use C4::Koha qw( GetAuthorisedValues );
37 use C4::Output;
38 use C4::Serials;
39 use Koha::AdditionalField;
40
41 use Koha::DateUtils;
42
43 my $query         = new CGI;
44 my $title         = $query->param('title_filter') || '';
45 my $ISSN          = $query->param('ISSN_filter') || '';
46 my $EAN           = $query->param('EAN_filter') || '';
47 my $callnumber    = $query->param('callnumber_filter') || '';
48 my $publisher     = $query->param('publisher_filter') || '';
49 my $bookseller    = $query->param('bookseller_filter') || '';
50 my $biblionumber  = $query->param('biblionumber') || '';
51 my $branch        = $query->param('branch_filter') || '';
52 my $location      = $query->param('location_filter') || '';
53 my $expiration_date = $query->param('expiration_date_filter') || '';
54 my $routing       = $query->param('routing') || C4::Context->preference("RoutingSerials");
55 my $searched      = $query->param('searched') || 0;
56 my @subscriptionids = $query ->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         authnotrequired => 0,
65         flagsrequired   => { serials => '*' },
66         debug           => 1,
67     }
68 );
69
70 if ( $op and $op eq "close" ) {
71     for my $subscriptionid ( @subscriptionids ) {
72         C4::Serials::CloseSubscription( $subscriptionid );
73     }
74 } elsif ( $op and $op eq "reopen" ) {
75     for my $subscriptionid ( @subscriptionids ) {
76         C4::Serials::ReopenSubscription( $subscriptionid );
77     }
78 }
79
80
81 my $additional_fields = Koha::AdditionalField->all( { tablename => 'subscription', searchable => 1 } );
82 my $additional_field_filters;
83 for my $field ( @$additional_fields ) {
84     my $filter_value = $query->param('additional_field_' . $field->{id} . '_filter');
85     if ( defined ( $filter_value ) ) {
86         $additional_field_filters->{ $field->{name} } = $filter_value;
87     }
88     if ( $field->{authorised_value_category} ) {
89         $field->{authorised_value_choices} = GetAuthorisedValues( $field->{authorised_value_category} );
90     }
91 }
92
93 my $expiration_date_dt = $expiration_date ? dt_from_string( $expiration_date ) : undef;
94 my @subscriptions;
95 if ($searched){
96     @subscriptions = SearchSubscriptions(
97         {
98             biblionumber => $biblionumber,
99             title        => $title,
100             issn         => $ISSN,
101             ean          => $EAN,
102             callnumber   => $callnumber,
103             publisher    => $publisher,
104             bookseller   => $bookseller,
105             branch       => $branch,
106             additional_fields => [ map{ { name => $_, value => $additional_field_filters->{$_}} } keys %$additional_field_filters ],
107             location     => $location,
108             expiration_date => $expiration_date_dt,
109         }
110     );
111 }
112
113 # to toggle between create or edit routing list options
114 if ($routing) {
115     for my $subscription ( @subscriptions) {
116         $subscription->{routingedit} = check_routing( $subscription->{subscriptionid} );
117     }
118 }
119
120 my (@openedsubscriptions, @closedsubscriptions);
121 for my $sub ( @subscriptions ) {
122     unless ( $sub->{closed} ) {
123         push @openedsubscriptions, $sub
124             unless $sub->{cannotdisplay};
125     } else {
126         push @closedsubscriptions, $sub
127             unless $sub->{cannotdisplay};
128     }
129 }
130
131 my $branches = GetBranches();
132 my @branches_loop;
133 foreach (sort keys %$branches){
134     my $selected = 0;
135     $selected = 1 if( defined $branch and $branch eq $_ );
136     push @branches_loop, {
137         branchcode  => $_,
138         branchname  => $branches->{$_}->{'branchname'},
139         selected    => $selected,
140     };
141 }
142
143
144 $template->param(
145     openedsubscriptions => \@openedsubscriptions,
146     closedsubscriptions => \@closedsubscriptions,
147     total         => @openedsubscriptions + @closedsubscriptions,
148     title_filter  => $title,
149     ISSN_filter   => $ISSN,
150     EAN_filter    => $EAN,
151     callnumber_filter => $callnumber,
152     publisher_filter => $publisher,
153     bookseller_filter  => $bookseller,
154     branch_filter => $branch,
155     locations     => C4::Koha::GetAuthorisedValues('LOC', $location),
156     expiration_date_filter => $expiration_date_dt,
157     branches_loop => \@branches_loop,
158     done_searched => $searched,
159     routing       => $routing,
160     additional_field_filters => $additional_field_filters,
161     additional_fields_for_subscription => $additional_fields,
162     marcflavour   => (uc(C4::Context->preference("marcflavour")))
163 );
164
165 output_html_with_http_headers $query, $cookie, $template->output;