Bug 17301 - Add callnumber to label-edit-batch.pl
[koha.git] / suggestion / suggestion.pl
blob472ab649d7c4cc84a7d5fab1fc70b0c908a90687
1 #!/usr/bin/perl
3 # This file is part of Koha.
4 # Copyright 2006-2010 BibLibre
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>.
20 use strict;
21 #use warnings; FIXME - Bug 2505
22 require Exporter;
23 use CGI qw ( -utf8 );
24 use C4::Auth; # get_template_and_user
25 use C4::Output;
26 use C4::Suggestions;
27 use C4::Koha; #GetItemTypes
28 use C4::Budgets;
29 use C4::Search;
30 use C4::Members;
31 use C4::Debug;
33 use Koha::DateUtils qw( dt_from_string );
34 use Koha::Acquisition::Currencies;
35 use Koha::Libraries;
37 use URI::Escape;
39 sub Init{
40 my $suggestion= shift @_;
41 # "Managed by" is used only when a suggestion is being edited (not when created)
42 if ($suggestion->{'suggesteddate'} eq "0000-00-00" ||$suggestion->{'suggesteddate'} eq "") {
43 # new suggestion
44 $suggestion->{suggesteddate} = dt_from_string;
45 $suggestion->{'suggestedby'} = C4::Context->userenv->{"number"} unless ($suggestion->{'suggestedby'});
47 else {
48 # editing of an existing suggestion
49 $suggestion->{manageddate} = dt_from_string;
50 $suggestion->{'managedby'} = C4::Context->userenv->{"number"} unless ($suggestion->{'managedby'});
52 $suggestion->{'branchcode'}=C4::Context->userenv->{"branch"} unless ($suggestion->{'branchcode'});
55 sub GetCriteriumDesc{
56 my ($criteriumvalue,$displayby)=@_;
57 if ($displayby =~ /status/i) {
58 unless ( grep { /$criteriumvalue/ } qw(ASKED ACCEPTED REJECTED CHECKED ORDERED AVAILABLE) ) {
59 return GetAuthorisedValueByCode('SUGGEST_STATUS', $criteriumvalue ) || "Unknown";
61 return ($criteriumvalue eq 'ASKED'?"Pending":ucfirst(lc( $criteriumvalue))) if ($displayby =~/status/i);
63 return Koha::Libraries->find($criteriumvalue)->branchname
64 if $displayby =~ /branchcode/;
65 return GetAuthorisedValueByCode('SUGGEST_FORMAT', $criteriumvalue) || "Unknown" if ($displayby =~/itemtype/);
66 if ($displayby =~/suggestedby/||$displayby =~/managedby/||$displayby =~/acceptedby/){
67 my $borr=C4::Members::GetMember(borrowernumber=>$criteriumvalue);
68 return "" unless $borr;
69 return $$borr{surname} . ", " . $$borr{firstname};
71 if ( $displayby =~ /budgetid/) {
72 my $budget = GetBudget($criteriumvalue);
73 return "" unless $budget;
74 return $$budget{budget_name};
78 my $input = CGI->new;
79 my $redirect = $input->param('redirect');
80 my $suggestedbyme = (defined $input->param('suggestedbyme')? $input->param('suggestedbyme'):1);
81 my $op = $input->param('op')||'else';
82 my @editsuggestions = $input->multi_param('edit_field');
83 my $suggestedby = $input->param('suggestedby');
84 my $returnsuggestedby = $input->param('returnsuggestedby');
85 my $returnsuggested = $input->param('returnsuggested');
86 my $managedby = $input->param('managedby');
87 my $displayby = $input->param('displayby') || '';
88 my $tabcode = $input->param('tabcode');
90 # filter informations which are not suggestion related.
91 my $suggestion_ref = $input->Vars;
93 # get only the columns of Suggestion
94 my $schema = Koha::Database->new()->schema;
95 my $columns = ' '.join(' ', $schema->source('Suggestion')->columns).' ';
96 my $suggestion_only = { map { $columns =~ / $_ / ? ($_ => $suggestion_ref->{$_}) : () } keys %$suggestion_ref };
97 $suggestion_only->{STATUS} = $suggestion_ref->{STATUS};
99 delete $$suggestion_ref{$_} foreach qw( suggestedbyme op displayby tabcode edit_field );
100 foreach (keys %$suggestion_ref){
101 delete $$suggestion_ref{$_} if (!$$suggestion_ref{$_} && ($op eq 'else' || $op eq 'change'));
103 my ( $template, $borrowernumber, $cookie, $userflags ) = get_template_and_user(
105 template_name => "suggestion/suggestion.tt",
106 query => $input,
107 type => "intranet",
108 flagsrequired => { catalogue => 1 },
112 $borrowernumber = $input->param('borrowernumber') if ( $input->param('borrowernumber') );
113 $template->param('borrowernumber' => $borrowernumber);
115 #########################################
116 ## Operations
118 if ( $op =~ /save/i ) {
119 $suggestion_only->{suggesteddate} = dt_from_string( $suggestion_only->{suggesteddate} )
120 if $suggestion_only->{suggesteddate};
122 if ( $suggestion_only->{"STATUS"} ) {
123 if ( my $tmpstatus = lc( $suggestion_only->{"STATUS"} ) =~ /ACCEPTED|REJECTED/i ) {
124 $suggestion_only->{ lc( $suggestion_only->{"STATUS"}) . "date" } = dt_from_string;
125 $suggestion_only->{ lc( $suggestion_only->{"STATUS"}) . "by" } = C4::Context->userenv->{number};
127 $suggestion_only->{manageddate} = dt_from_string;
128 $suggestion_only->{"managedby"} = C4::Context->userenv->{number};
130 if ( $suggestion_only->{'suggestionid'} > 0 ) {
131 &ModSuggestion($suggestion_only);
132 } else {
133 ###FIXME:Search here if suggestion already exists.
134 my $suggestions_loop =
135 SearchSuggestion( $suggestion_only );
136 if (@$suggestions_loop>=1){
137 #some suggestion are answering the request Donot Add
138 my @messages;
139 for my $suggestion ( @$suggestions_loop ) {
140 push @messages, { type => 'error', code => 'already_exists', id => $suggestion->{suggestionid} };
142 $template->param( messages => \@messages );
144 else {
145 ## Adding some informations related to suggestion
146 &NewSuggestion($suggestion_only);
148 # empty fields, to avoid filter in "SearchSuggestion"
150 map{delete $$suggestion_ref{$_}} keys %$suggestion_ref;
151 $op = 'else';
153 if( $redirect eq 'purchase_suggestions' ) {
154 print $input->redirect("/cgi-bin/koha/members/purchase-suggestions.pl?borrowernumber=$borrowernumber");
158 elsif ($op=~/add/) {
159 #Adds suggestion
160 Init($suggestion_ref);
161 $op ='save';
163 elsif ($op=~/edit/) {
164 #Edit suggestion
165 $suggestion_ref=&GetSuggestion($$suggestion_ref{'suggestionid'});
166 Init($suggestion_ref);
167 $op ='save';
169 elsif ($op eq "change" ) {
170 # set accepted/rejected/managed informations if applicable
171 # ie= if the librarian has chosen some action on the suggestions
172 if ($suggestion_only->{"STATUS"} eq "ACCEPTED"){
173 $suggestion_only->{accepteddate} = dt_from_string;
174 $suggestion_only->{"acceptedby"}=C4::Context->userenv->{number};
175 } elsif ($suggestion_only->{"STATUS"} eq "REJECTED"){
176 $suggestion_only->{rejecteddate} = dt_from_string;
177 $suggestion_only->{"rejectedby"}=C4::Context->userenv->{number};
179 if ($suggestion_only->{"STATUS"}){
180 $suggestion_only->{manageddate} = dt_from_string;
181 $suggestion_only->{"managedby"}=C4::Context->userenv->{number};
183 if ( my $reason = $$suggestion_ref{"reason$tabcode"}){
184 if ( $reason eq "other" ) {
185 $reason = $$suggestion_ref{"other_reason$tabcode"};
187 $suggestion_only->{reason}=$reason;
190 foreach my $suggestionid (@editsuggestions) {
191 next unless $suggestionid;
192 $suggestion_only->{'suggestionid'}=$suggestionid;
193 &ModSuggestion($suggestion_only);
195 my $params = '';
196 foreach my $key (
198 displayby branchcode title author isbn publishercode copyrightdate
199 collectiontitle suggestedby suggesteddate_from suggesteddate_to
200 manageddate_from manageddate_to accepteddate_from
201 accepteddate_to budgetid
205 $params .= $key . '=' . uri_escape($input->param($key)) . '&'
206 if defined($input->param($key));
208 print $input->redirect("/cgi-bin/koha/suggestion/suggestion.pl?$params");
209 }elsif ($op eq "delete" ) {
210 foreach my $delete_field (@editsuggestions) {
211 &DelSuggestion( $borrowernumber, $delete_field,'intranet' );
213 $op = 'else';
215 elsif ( $op eq 'show' ) {
216 $suggestion_ref=&GetSuggestion($$suggestion_ref{'suggestionid'});
217 my $budget = GetBudget $$suggestion_ref{budgetid};
218 $$suggestion_ref{budgetname} = $$budget{budget_name};
219 Init($suggestion_ref);
221 if ($op=~/else/) {
222 $op='else';
224 $displayby||="STATUS";
225 delete $$suggestion_ref{'branchcode'} if($displayby eq "branchcode");
226 # distinct values of display by
227 my $criteria_list=GetDistinctValues("suggestions.".$displayby);
228 my (@criteria_dv, $criteria_has_empty);
229 foreach (@$criteria_list) {
230 if ($_->{value}) {
231 push @criteria_dv, $_->{value};
232 } else {
233 $criteria_has_empty = 1;
236 # aggregate null and empty values under empty value
237 push @criteria_dv, '' if $criteria_has_empty;
239 my @allsuggestions;
240 my $reasonsloop = GetAuthorisedValues("SUGGEST");
241 foreach my $criteriumvalue ( @criteria_dv ) {
242 # By default, display suggestions from current working branch
243 unless ( exists $$suggestion_ref{'branchcode'} ) {
244 $$suggestion_ref{'branchcode'} = C4::Context->userenv->{'branch'};
246 my $definedvalue = defined $$suggestion_ref{$displayby} && $$suggestion_ref{$displayby} ne "";
248 next if ( $definedvalue && $$suggestion_ref{$displayby} ne $criteriumvalue );
249 $$suggestion_ref{$displayby} = $criteriumvalue;
251 my $suggestions = &SearchSuggestion($suggestion_ref);
252 foreach my $suggestion (@$suggestions) {
253 if ($suggestion->{budgetid}){
254 my $bud = GetBudget( $suggestion->{budgetid} );
255 $suggestion->{budget_name} = $bud->{budget_name} if $bud;
258 push @allsuggestions,{
259 "suggestiontype"=>$criteriumvalue||"suggest",
260 "suggestiontypelabel"=>GetCriteriumDesc($criteriumvalue,$displayby)||"",
261 "suggestionscount"=>scalar(@$suggestions),
262 'suggestions_loop'=>$suggestions,
263 'reasonsloop' => $reasonsloop,
266 delete $$suggestion_ref{$displayby} unless $definedvalue;
269 $template->param(
270 "displayby"=> $displayby,
271 "notabs"=> $displayby eq "",
272 suggestions => \@allsuggestions,
276 foreach my $element ( qw(managedby suggestedby acceptedby) ) {
277 # $debug || warn $$suggestion_ref{$element};
278 if ($$suggestion_ref{$element}){
279 my $member=GetMember(borrowernumber=>$$suggestion_ref{$element});
280 $template->param(
281 $element."_borrowernumber"=>$$member{borrowernumber},
282 $element."_firstname"=>$$member{firstname},
283 $element."_surname"=>$$member{surname},
284 $element."_branchcode"=>$$member{branchcode},
285 $element."_description"=>$$member{description},
286 $element."_category_type"=>$$member{category_type}
290 $template->param(
291 %$suggestion_ref,
292 "op_$op" => 1,
293 "op" =>$op,
296 if(defined($returnsuggested) and $returnsuggested ne "noone")
298 print $input->redirect("/cgi-bin/koha/members/moremember.pl?borrowernumber=".$returnsuggested."#suggestions");
301 my $branchfilter = ($displayby ne "branchcode") ? $input->param('branchcode') : C4::Context->userenv->{'branch'};
303 $template->param(
304 branchfilter => $branchfilter,
307 $template->param( returnsuggestedby => $returnsuggestedby );
309 my $patron_reason_loop = GetAuthorisedValues("OPAC_SUG");
310 $template->param(patron_reason_loop=>$patron_reason_loop);
312 #Budgets management
313 my $budgets = [];
314 if ($branchfilter) {
315 my $searchbudgets = { budget_branchcode => $branchfilter };
316 $budgets = GetBudgets($searchbudgets);
317 } else {
318 $budgets = GetBudgets(undef);
321 my @budgets_loop;
322 foreach my $budget ( @{$budgets} ) {
323 next unless (CanUserUseBudget($borrowernumber, $budget, $userflags));
325 ## Please see file perltidy.ERR
326 $budget->{'selected'} = 1
327 if ($$suggestion_ref{'budgetid'}
328 && $budget->{'budget_id'} eq $$suggestion_ref{'budgetid'});
330 push @budgets_loop, $budget;
333 $template->param( budgetsloop => \@budgets_loop);
334 $template->param( "statusselected_$$suggestion_ref{'STATUS'}" =>1) if ($$suggestion_ref{'STATUS'});
336 my @currencies = Koha::Acquisition::Currencies->search;
337 $template->param(
338 currencies => \@currencies,
339 suggestion => $suggestion_ref,
340 price => sprintf("%.2f", $$suggestion_ref{'price'}||0),
341 total => sprintf("%.2f", $$suggestion_ref{'total'}||0),
344 # lists of distinct values (without empty) for filters
345 my %hashlists;
346 foreach my $field ( qw(managedby acceptedby suggestedby budgetid) ) {
347 my $values_list;
348 $values_list = GetDistinctValues( "suggestions." . $field );
349 my @codes_list = map {
350 { 'code' => $$_{'value'},
351 'desc' => GetCriteriumDesc( $$_{'value'}, $field ) || $$_{'value'},
352 'selected' => ($$suggestion_ref{$field}) ? $$_{'value'} eq $$suggestion_ref{$field} : 0,
354 } grep {
355 $$_{'value'}
356 } @$values_list;
357 $hashlists{ lc($field) . "_loop" } = \@codes_list;
360 $template->param(
361 %hashlists,
362 borrowernumber => ($input->param('borrowernumber') // undef),
363 SuggestionStatuses => GetAuthorisedValues('SUGGEST_STATUS'),
365 output_html_with_http_headers $input, $cookie, $template->output;