Bug 23986: Pass strings to Catmandu for deletion
[koha.git] / suggestion / suggestion.pl
1 #!/usr/bin/perl
2
3 # This file is part of Koha.
4 # Copyright 2006-2010 BibLibre
5
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 use Modern::Perl;
21 require Exporter;
22 use CGI qw ( -utf8 );
23 use C4::Auth;    # get_template_and_user
24 use C4::Output;
25 use C4::Suggestions;
26 use C4::Koha;
27 use C4::Budgets;
28 use C4::Search;
29 use C4::Members;
30 use C4::Debug;
31
32 use Koha::DateUtils qw( dt_from_string );
33 use Koha::AuthorisedValues;
34 use Koha::Acquisition::Currencies;
35 use Koha::Libraries;
36 use Koha::Patrons;
37
38 use URI::Escape;
39
40 sub Init{
41     my $suggestion= shift @_;
42     # "Managed by" is used only when a suggestion is being edited (not when created)
43     if ($suggestion->{'suggesteddate'} eq "0000-00-00" ||$suggestion->{'suggesteddate'} eq "") {
44         # new suggestion
45         $suggestion->{suggesteddate} = dt_from_string;
46         $suggestion->{'suggestedby'} = C4::Context->userenv->{"number"} unless ($suggestion->{'suggestedby'});
47     }
48     else {
49         # editing of an existing suggestion
50         $suggestion->{manageddate} = dt_from_string;
51         $suggestion->{'managedby'} = C4::Context->userenv->{"number"} unless ($suggestion->{'managedby'});
52     }
53     $suggestion->{'branchcode'}=C4::Context->userenv->{"branch"} unless ($suggestion->{'branchcode'});
54 }
55
56 sub GetCriteriumDesc{
57     my ($criteriumvalue,$displayby)=@_;
58     if ($displayby =~ /status/i) {
59         unless ( grep { /$criteriumvalue/ } qw(ASKED ACCEPTED REJECTED CHECKED ORDERED AVAILABLE) ) {
60             my $av = Koha::AuthorisedValues->search({ category => 'SUGGEST_STATUS', authorised_value => $criteriumvalue });
61             return $av->count ? $av->next->lib : 'Unknown';
62         }
63         return ($criteriumvalue eq 'ASKED'?"Pending":ucfirst(lc( $criteriumvalue))) if ($displayby =~/status/i);
64     }
65     return Koha::Libraries->find($criteriumvalue)->branchname
66         if $displayby =~ /branchcode/;
67     if ( $displayby =~ /itemtype/ ) {
68         my $av = Koha::AuthorisedValues->search({ category => 'SUGGEST_FORMAT', authorised_value => $criteriumvalue });
69         return $av->count ? $av->next->lib : 'Unknown';
70     }
71     if ($displayby =~/suggestedby/||$displayby =~/managedby/||$displayby =~/acceptedby/){
72         my $patron = Koha::Patrons->find( $criteriumvalue );
73         return "" unless $patron;
74         return $patron->surname . ", " . $patron->firstname;
75     }
76     if ( $displayby =~ /budgetid/) {
77         my $budget = GetBudget($criteriumvalue);
78         return "" unless $budget;
79         return $$budget{budget_name};
80     }
81 }
82
83 my $input           = CGI->new;
84 my $redirect  = $input->param('redirect');
85 my $suggestedbyme   = (defined $input->param('suggestedbyme')? $input->param('suggestedbyme'):1);
86 my $op              = $input->param('op')||'else';
87 my @editsuggestions = $input->multi_param('edit_field');
88 my $suggestedby     = $input->param('suggestedby');
89 my $returnsuggestedby = $input->param('returnsuggestedby');
90 my $returnsuggested = $input->param('returnsuggested');
91 my $managedby       = $input->param('managedby');
92 my $displayby       = $input->param('displayby') || '';
93 my $tabcode         = $input->param('tabcode');
94 my $reasonsloop     = GetAuthorisedValues("SUGGEST");
95
96 # filter informations which are not suggestion related.
97 my $suggestion_ref  = $input->Vars;
98
99 # get only the columns of Suggestion
100 my $schema = Koha::Database->new()->schema;
101 my $columns = ' '.join(' ', $schema->source('Suggestion')->columns).' ';
102 my $suggestion_only = { map { $columns =~ / $_ / ? ($_ => $suggestion_ref->{$_}) : () } keys %$suggestion_ref };
103 $suggestion_only->{STATUS} = $suggestion_ref->{STATUS};
104
105 delete $$suggestion_ref{$_} foreach qw( suggestedbyme op displayby tabcode edit_field );
106 foreach (keys %$suggestion_ref){
107     delete $$suggestion_ref{$_} if (!$$suggestion_ref{$_} && ($op eq 'else' || $op eq 'change'));
108 }
109 my ( $template, $borrowernumber, $cookie, $userflags ) = get_template_and_user(
110         {
111             template_name   => "suggestion/suggestion.tt",
112             query           => $input,
113             type            => "intranet",
114             flagsrequired   => { acquisition => 'suggestions_manage' },
115         }
116     );
117
118 $borrowernumber = $input->param('borrowernumber') if ( $input->param('borrowernumber') );
119 $template->param('borrowernumber' => $borrowernumber);
120 my $branchfilter = $input->param('branchcode') || C4::Context->userenv->{'branch'};
121
122 #########################################
123 ##  Operations
124 ##
125 if ( $op =~ /save/i ) {
126     $suggestion_only->{suggesteddate} = dt_from_string( $suggestion_only->{suggesteddate} )
127         if $suggestion_only->{suggesteddate};
128
129     if ( $suggestion_only->{"STATUS"} ) {
130         if ( my $tmpstatus = lc( $suggestion_only->{"STATUS"} ) =~ /ACCEPTED|REJECTED/i ) {
131             $suggestion_only->{ lc( $suggestion_only->{"STATUS"}) . "date" } = dt_from_string;
132             $suggestion_only->{ lc( $suggestion_only->{"STATUS"}) . "by" }   = C4::Context->userenv->{number};
133         }
134         $suggestion_only->{manageddate} = dt_from_string;
135         $suggestion_only->{"managedby"}   = C4::Context->userenv->{number};
136     }
137
138     my $otherreason = $input->param('other_reason');
139     if ($suggestion_only->{reason} eq 'other' && $otherreason) {
140         $suggestion_only->{reason} = $otherreason;
141     }
142
143     if ( $suggestion_only->{'suggestionid'} > 0 ) {
144         &ModSuggestion($suggestion_only);
145     } else {
146         ###FIXME:Search here if suggestion already exists.
147         my $suggestions_loop =
148             SearchSuggestion( $suggestion_only );
149         if (@$suggestions_loop>=1){
150             #some suggestion are answering the request Donot Add
151             my @messages;
152             for my $suggestion ( @$suggestions_loop ) {
153                 push @messages, { type => 'error', code => 'already_exists', id => $suggestion->{suggestionid} };
154             }
155             $template->param( messages => \@messages );
156         } 
157         else {    
158             ## Adding some informations related to suggestion
159             &NewSuggestion($suggestion_only);
160         }
161         # empty fields, to avoid filter in "SearchSuggestion"
162     }  
163     map{delete $$suggestion_ref{$_}} keys %$suggestion_ref;
164     $op = 'else';
165
166     if( $redirect eq 'purchase_suggestions' ) {
167         print $input->redirect("/cgi-bin/koha/members/purchase-suggestions.pl?borrowernumber=$borrowernumber");
168     }
169
170 }
171 elsif ($op=~/add/) {
172     #Adds suggestion  
173     Init($suggestion_ref);
174     $op ='save';
175
176 elsif ($op=~/edit/) {
177     #Edit suggestion  
178     $suggestion_ref=&GetSuggestion($$suggestion_ref{'suggestionid'});
179     $suggestion_ref->{reasonsloop} = $reasonsloop;
180     my $other_reason = 1;
181     foreach my $reason ( @{ $reasonsloop } ) {
182         if ($suggestion_ref->{reason} eq $reason->{lib}) {
183             $other_reason = 0;
184         }
185     }
186     $other_reason = 0 unless $suggestion_ref->{reason};
187     $template->param(other_reason => $other_reason);
188     Init($suggestion_ref);
189     $op ='save';
190 }  
191 elsif ($op eq "change" ) {
192
193     my $suggestion;
194     # set accepted/rejected/managed informations if applicable
195     # ie= if the librarian has chosen some action on the suggestions
196     my $STATUS      = $input->param('STATUS');
197     my $accepted_by = $input->param('acceptedby');
198     if ( $STATUS eq "ACCEPTED" ) {
199         $suggestion = {
200             accepteddate => dt_from_string,
201             acceptedby => C4::Context->userenv->{number},
202         };
203     }
204     elsif ( $STATUS eq "REJECTED" ) {
205         $suggestion = {
206             rejecteddate => dt_from_string,
207             rejectedby   => C4::Context->userenv->{number},
208         };
209     }
210     if ($STATUS) {
211         $suggestion->{manageddate} = dt_from_string;
212         $suggestion->{managedby}   = C4::Context->userenv->{number};
213         $suggestion->{STATUS}      = $STATUS;
214     }
215     if ( my $reason = $input->param("reason$tabcode") ) {
216         if ( $reason eq "other" ) {
217             $reason = $input->param("other_reason$tabcode");
218         }
219         $suggestion->{reason} = $reason;
220     }
221
222     foreach my $suggestionid (@editsuggestions) {
223         next unless $suggestionid;
224         $suggestion->{suggestionid} = $suggestionid;
225         &ModSuggestion($suggestion);
226     }
227     my $params = '';
228     foreach my $key (
229         qw(
230         displayby branchcode title author isbn publishercode copyrightdate
231         collectiontitle suggestedby suggesteddate_from suggesteddate_to
232         manageddate_from manageddate_to accepteddate_from
233         accepteddate_to budgetid
234         )
235       )
236     {
237         $params .= $key . '=' . uri_escape($input->param($key)) . '&'
238           if defined($input->param($key));
239     }
240     print $input->redirect("/cgi-bin/koha/suggestion/suggestion.pl?$params");
241 }elsif ($op eq "delete" ) {
242     foreach my $delete_field (@editsuggestions) {
243         &DelSuggestion( $borrowernumber, $delete_field,'intranet' );
244     }
245     $op = 'else';
246 }
247 elsif ( $op eq 'show' ) {
248     $suggestion_ref=&GetSuggestion($$suggestion_ref{'suggestionid'});
249     my $budget = GetBudget $$suggestion_ref{budgetid};
250     $$suggestion_ref{budgetname} = $$budget{budget_name};
251     Init($suggestion_ref);
252 }
253 if ($op=~/else/) {
254     $op='else';
255     
256     $displayby||="STATUS";
257     # distinct values of display by
258     my $criteria_list=GetDistinctValues("suggestions.".$displayby);
259     my (@criteria_dv, $criteria_has_empty);
260     foreach (@$criteria_list) {
261         if ($_->{value}) {
262             push @criteria_dv, $_->{value};
263         } else {
264             $criteria_has_empty = 1;
265         }
266     }
267     # aggregate null and empty values under empty value
268     push @criteria_dv, '' if $criteria_has_empty;
269
270     # Hack to not modify GetDistinctValues for this specific case
271     if (   $displayby eq 'branchcode'
272         && C4::Context->preference('IndependentBranches')
273         && not C4::Context->IsSuperLibrarian )
274     {
275         @criteria_dv = ( C4::Context->userenv->{'branch'} );
276     }
277
278     my @allsuggestions;
279     foreach my $criteriumvalue ( @criteria_dv ) {
280         # By default, display suggestions from current working branch
281         unless ( exists $$suggestion_ref{'branchcode'} ) {
282             $$suggestion_ref{'branchcode'} = C4::Context->userenv->{'branch'};
283         }
284         my $definedvalue = defined $$suggestion_ref{$displayby} && $$suggestion_ref{$displayby} ne "";
285
286         next if ( $definedvalue && $$suggestion_ref{$displayby} ne $criteriumvalue ) and ($displayby ne 'branchcode' or $branchfilter ne '__ANY__' );
287         $$suggestion_ref{$displayby} = $criteriumvalue;
288
289         my $suggestions = &SearchSuggestion($suggestion_ref);
290         foreach my $suggestion (@$suggestions) {
291             if ($suggestion->{budgetid}){
292                 my $bud = GetBudget( $suggestion->{budgetid} );
293                 $suggestion->{budget_name} = $bud->{budget_name} if $bud;
294             }
295         }
296         push @allsuggestions,{
297                             "suggestiontype"=>$criteriumvalue||"suggest",
298                             "suggestiontypelabel"=>GetCriteriumDesc($criteriumvalue,$displayby)||"",
299                             "suggestionscount"=>scalar(@$suggestions),             
300                             'suggestions_loop'=>$suggestions,
301                             'reasonsloop'     => $reasonsloop,
302                             };
303
304         delete $$suggestion_ref{$displayby} unless $definedvalue;
305     }
306
307     $template->param(
308         "displayby"=> $displayby,
309         "notabs"=> $displayby eq "",
310         suggestions       => \@allsuggestions,
311     );
312 }
313
314 foreach my $element ( qw(managedby suggestedby acceptedby) ) {
315 #    $debug || warn $$suggestion_ref{$element};
316     if ($$suggestion_ref{$element}){
317         my $patron = Koha::Patrons->find( $$suggestion_ref{$element} );
318         my $category = $patron->category;
319         $template->param(
320             $element."_borrowernumber"=>$patron->borrowernumber,
321             $element."_firstname"=>$patron->firstname,
322             $element."_surname"=>$patron->surname,
323             $element."_cardnumber"=>$patron->cardnumber,
324             $element."_branchcode"=>$patron->branchcode,
325             $element."_description"=>$category->description,
326             $element."_category_type"=>$category->category_type,
327         );
328     }
329 }
330 $template->param(
331     %$suggestion_ref,  
332     "op_$op"                => 1,
333     "op"             =>$op,
334 );
335
336 if(defined($returnsuggested) and $returnsuggested ne "noone")
337 {
338     print $input->redirect("/cgi-bin/koha/members/moremember.pl?borrowernumber=".$returnsuggested."#suggestions");
339 }
340
341 $template->param(
342     branchfilter => $branchfilter,
343 );
344
345 $template->param( returnsuggestedby => $returnsuggestedby );
346
347 my $patron_reason_loop = GetAuthorisedValues("OPAC_SUG");
348 $template->param(patron_reason_loop=>$patron_reason_loop);
349
350 #Budgets management
351 my $budgets = [];
352 if ($branchfilter) {
353     my $searchbudgets = { budget_branchcode => $branchfilter };
354     $budgets = GetBudgets($searchbudgets);
355 } else {
356     $budgets = GetBudgets(undef);
357 }
358
359 my @budgets_loop;
360 foreach my $budget ( @{$budgets} ) {
361     next unless (CanUserUseBudget($borrowernumber, $budget, $userflags));
362
363     ## Please see file perltidy.ERR
364     $budget->{'selected'} = 1
365         if ($$suggestion_ref{'budgetid'}
366         && $budget->{'budget_id'} eq $$suggestion_ref{'budgetid'});
367
368     push @budgets_loop, $budget;
369 }
370
371 $template->param( budgetsloop => \@budgets_loop);
372 if( $suggestion_ref->{STATUS} ) {
373     $template->param(
374         "statusselected_".$suggestion_ref->{STATUS} => 1,
375         selected_status => $suggestion_ref->{STATUS}, # We need template var selected_status in the second part of the template where template var suggestion.STATUS is out of scope
376     );
377 }
378
379 my @currencies = Koha::Acquisition::Currencies->search;
380 $template->param(
381     currencies   => \@currencies,
382     suggestion   => $suggestion_ref,
383     price        => sprintf("%.2f", $$suggestion_ref{'price'}||0),
384     total            => sprintf("%.2f", $$suggestion_ref{'total'}||0),
385 );
386
387 # lists of distinct values (without empty) for filters
388 my %hashlists;
389 foreach my $field ( qw(managedby acceptedby suggestedby budgetid) ) {
390     my $values_list;
391     $values_list = GetDistinctValues( "suggestions." . $field );
392     my @codes_list = map {
393         {   'code' => $$_{'value'},
394             'desc' => GetCriteriumDesc( $$_{'value'}, $field ) || $$_{'value'},
395             'selected' => ($$suggestion_ref{$field}) ? $$_{'value'} eq $$suggestion_ref{$field} : 0,
396         }
397     } grep {
398         $$_{'value'}
399     } @$values_list;
400     $hashlists{ lc($field) . "_loop" } = \@codes_list;
401 }
402
403 $template->param(
404     %hashlists,
405     borrowernumber           => ($input->param('borrowernumber') // undef),
406     SuggestionStatuses       => GetAuthorisedValues('SUGGEST_STATUS'),
407 );
408 output_html_with_http_headers $input, $cookie, $template->output;