Bug 15774: Use Koha::Object(s) for additional fields
[koha.git] / serials / serials-search.pl
blobb1fa40f01ab5474dce7b96ad05343af349dc8a48
1 #!/usr/bin/perl
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>.
21 =head1 NAME
23 serials-search.pl
25 =head1 DESCRIPTION
27 this script is the search page for serials
29 =cut
31 use Modern::Perl;
32 use CGI qw ( -utf8 );
33 use C4::Auth;
34 use C4::Context;
35 use C4::Koha qw( GetAuthorisedValues );
36 use C4::Output;
37 use C4::Serials;
38 use Koha::AdditionalFields;
40 use Koha::DateUtils;
41 use Koha::SharedContent;
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 $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",
63 query => $query,
64 type => "intranet",
65 authnotrequired => 0,
66 flagsrequired => { serials => '*' },
67 debug => 1,
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, {
88 id => $field->id,
89 value => $value,
94 my $expiration_date_dt = $expiration_date ? dt_from_string( $expiration_date ) : undef;
95 my @subscriptions;
96 my $mana_statuscode;
97 if ($searched){
98 if ($mana) {
99 my $result = Koha::SharedContent::search_entities("subscription",{
100 title => $title,
101 issn => $ISSN,
102 ean => $EAN,
103 publisher => $publisher
105 $mana_statuscode = $result->{code};
106 @subscriptions = @{ $result->{data} };
108 else {
109 @subscriptions = SearchSubscriptions(
111 biblionumber => $biblionumber,
112 title => $title,
113 issn => $ISSN,
114 ean => $EAN,
115 callnumber => $callnumber,
116 publisher => $publisher,
117 bookseller => $bookseller,
118 branch => $branch,
119 additional_fields => \@additional_field_filters,
120 location => $location,
121 expiration_date => $expiration_date_dt,
126 if ($mana) {
127 $template->param(
128 subscriptions => \@subscriptions,
129 statuscode => $mana_statuscode,
130 total => scalar @subscriptions,
131 title_filter => $title,
132 ISSN_filter => $ISSN,
133 EAN_filter => $EAN,
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,
141 routing => $routing,
142 additional_field_filters => $additional_field_filters,
143 additional_fields_for_subscription => $additional_fields,
144 marcflavour => (uc(C4::Context->preference("marcflavour"))),
145 mana => $mana,
146 search_only => 1
149 else
151 # to toggle between create or edit routing list options
152 if ($routing) {
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};
163 } else {
164 push @closedsubscriptions, $sub
165 unless $sub->{cannotdisplay};
169 my @branches = Koha::Libraries->search( {}, { order_by => ['branchcode'] } );
170 my @branches_loop;
171 foreach my $b ( @branches ) {
172 my $selected = 0;
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,
181 $template->param(
182 openedsubscriptions => \@openedsubscriptions,
183 closedsubscriptions => \@closedsubscriptions,
184 total => @openedsubscriptions + @closedsubscriptions,
185 title_filter => $title,
186 ISSN_filter => $ISSN,
187 EAN_filter => $EAN,
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,
196 routing => $routing,
197 additional_field_filters => { map { $_->{id} => $_->{value} } @additional_field_filters },
198 additional_fields_for_subscription => \@additional_fields,
199 marcflavour => (uc(C4::Context->preference("marcflavour"))),
200 mana => $mana
203 output_html_with_http_headers $query, $cookie, $template->output;