3 # Copyright 2012 Koha Team
5 # This file is part of Koha.
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.
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.
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>.
27 this script is the search page for serials
35 use C4
::Koha
qw( GetAuthorisedValues );
38 use Koha
::AdditionalFields
;
41 use Koha
::SharedContent
;
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 $mana = $query->param('mana') || 0;
57 my @subscriptionids = $query->multi_param('subscriptionid');
58 my $op = $query->param('op');
60 my ( $template, $loggedinuser, $cookie ) = get_template_and_user
(
62 template_name
=> "serials/serials-search.tt",
66 flagsrequired
=> { serials
=> '*' },
71 if ( $op and $op eq "close" ) {
72 for my $subscriptionid ( @subscriptionids ) {
73 C4
::Serials
::CloseSubscription
( $subscriptionid );
75 } elsif ( $op and $op eq "reopen" ) {
76 for my $subscriptionid ( @subscriptionids ) {
77 C4
::Serials
::ReopenSubscription
( $subscriptionid );
82 my @additional_fields = Koha
::AdditionalFields
->search( { tablename
=> 'subscription', searchable
=> 1 } );
83 my @additional_field_filters;
84 for my $field ( @additional_fields ) {
85 my $value = $query->param( 'additional_field_' . $field->id );
86 if ( defined $value and $value ne '' ) {
87 push @additional_field_filters, {
94 my $expiration_date_dt = $expiration_date ? dt_from_string
( $expiration_date ) : undef;
99 my $result = Koha
::SharedContent
::search_entities
("subscription",{
103 publisher
=> $publisher
105 $mana_statuscode = $result->{code
};
106 @subscriptions = @
{ $result->{data
} };
109 @subscriptions = SearchSubscriptions
(
111 biblionumber
=> $biblionumber,
115 callnumber
=> $callnumber,
116 publisher
=> $publisher,
117 bookseller
=> $bookseller,
119 additional_fields
=> \
@additional_field_filters,
120 location
=> $location,
121 expiration_date
=> $expiration_date_dt,
128 subscriptions
=> \
@subscriptions,
129 statuscode
=> $mana_statuscode,
130 total
=> scalar @subscriptions,
131 title_filter
=> $title,
132 ISSN_filter
=> $ISSN,
134 callnumber_filter
=> $callnumber,
135 publisher_filter
=> $publisher,
136 bookseller_filter
=> $bookseller,
137 branch_filter
=> $branch,
138 location_filter
=> $location,
139 expiration_date_filter
=> $expiration_date_dt,
140 done_searched
=> $searched,
142 additional_field_filters
=> \
@additional_field_filters,
143 additional_fields_for_subscription
=> \
@additional_fields,
144 marcflavour
=> (uc(C4
::Context
->preference("marcflavour"))),
151 # to toggle between create or edit routing list options
153 for my $subscription ( @subscriptions) {
154 $subscription->{routingedit
} = check_routing
( $subscription->{subscriptionid
} );
158 my (@openedsubscriptions, @closedsubscriptions);
159 for my $sub ( @subscriptions ) {
160 unless ( $sub->{closed
} ) {
161 push @openedsubscriptions, $sub
162 unless $sub->{cannotdisplay
};
164 push @closedsubscriptions, $sub
165 unless $sub->{cannotdisplay
};
169 my @branches = Koha
::Libraries
->search( {}, { order_by
=> ['branchcode'] } );
171 foreach my $b ( @branches ) {
173 $selected = 1 if( defined $branch and $branch eq $b->branchcode );
174 push @branches_loop, {
175 branchcode
=> $b->branchcode,
176 branchname
=> $b->branchname,
177 selected
=> $selected,
182 openedsubscriptions
=> \
@openedsubscriptions,
183 closedsubscriptions
=> \
@closedsubscriptions,
184 total
=> @openedsubscriptions + @closedsubscriptions,
185 title_filter
=> $title,
186 ISSN_filter
=> $ISSN,
188 callnumber_filter
=> $callnumber,
189 publisher_filter
=> $publisher,
190 bookseller_filter
=> $bookseller,
191 branch_filter
=> $branch,
192 location_filter
=> $location,
193 expiration_date_filter
=> $expiration_date_dt,
194 branches_loop
=> \
@branches_loop,
195 done_searched
=> $searched,
197 additional_field_filters
=> { map { $_->{id
} => $_->{value
} } @additional_field_filters },
198 additional_fields_for_subscription
=> \
@additional_fields,
199 marcflavour
=> (uc(C4
::Context
->preference("marcflavour"))),
203 output_html_with_http_headers
$query, $cookie, $template->output;