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
36 use C4
::Koha
qw( GetAuthorisedValues );
39 use Koha
::AdditionalField
;
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');
59 my ( $template, $loggedinuser, $cookie ) = get_template_and_user
(
61 template_name
=> "serials/serials-search.tt",
65 flagsrequired
=> { serials
=> '*' },
70 if ( $op and $op eq "close" ) {
71 for my $subscriptionid ( @subscriptionids ) {
72 C4
::Serials
::CloseSubscription
( $subscriptionid );
74 } elsif ( $op and $op eq "reopen" ) {
75 for my $subscriptionid ( @subscriptionids ) {
76 C4
::Serials
::ReopenSubscription
( $subscriptionid );
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 and $filter_value ne q
|| ) {
86 $additional_field_filters->{ $field->{name
} } = {
87 value
=> $filter_value,
88 authorised_value_category
=> $field->{authorised_value_category
},
91 if ( $field->{authorised_value_category
} ) {
92 $field->{authorised_value_choices
} = GetAuthorisedValues
( $field->{authorised_value_category
} );
96 my $expiration_date_dt = $expiration_date ? dt_from_string
( $expiration_date ) : undef;
99 @subscriptions = SearchSubscriptions
(
101 biblionumber
=> $biblionumber,
105 callnumber
=> $callnumber,
106 publisher
=> $publisher,
107 bookseller
=> $bookseller,
109 additional_fields
=> [ map{ { name
=> $_, value
=> $additional_field_filters->{$_}{value
}, authorised_value_category
=> $additional_field_filters->{$_}{authorised_value_category
} } } keys %$additional_field_filters ],
110 location
=> $location,
111 expiration_date
=> $expiration_date_dt,
116 # to toggle between create or edit routing list options
118 for my $subscription ( @subscriptions) {
119 $subscription->{routingedit
} = check_routing
( $subscription->{subscriptionid
} );
123 my (@openedsubscriptions, @closedsubscriptions);
124 for my $sub ( @subscriptions ) {
125 unless ( $sub->{closed
} ) {
126 push @openedsubscriptions, $sub
127 unless $sub->{cannotdisplay
};
129 push @closedsubscriptions, $sub
130 unless $sub->{cannotdisplay
};
134 my $branches = GetBranches
();
136 foreach (sort keys %$branches){
138 $selected = 1 if( defined $branch and $branch eq $_ );
139 push @branches_loop, {
141 branchname
=> $branches->{$_}->{'branchname'},
142 selected
=> $selected,
148 openedsubscriptions
=> \
@openedsubscriptions,
149 closedsubscriptions
=> \
@closedsubscriptions,
150 total
=> @openedsubscriptions + @closedsubscriptions,
151 title_filter
=> $title,
152 ISSN_filter
=> $ISSN,
154 callnumber_filter
=> $callnumber,
155 publisher_filter
=> $publisher,
156 bookseller_filter
=> $bookseller,
157 branch_filter
=> $branch,
158 locations
=> C4
::Koha
::GetAuthorisedValues
('LOC', $location),
159 expiration_date_filter
=> $expiration_date_dt,
160 branches_loop
=> \
@branches_loop,
161 done_searched
=> $searched,
163 additional_field_filters
=> $additional_field_filters,
164 additional_fields_for_subscription
=> $additional_fields,
165 marcflavour
=> (uc(C4
::Context
->preference("marcflavour")))
168 output_html_with_http_headers
$query, $cookie, $template->output;