1 package C4
::Suggestions
;
3 # Copyright 2000-2002 Katipo Communications
4 # Parts Copyright Biblibre 2011
6 # This file is part of Koha.
8 # Koha is free software; you can redistribute it and/or modify it
9 # under the terms of the GNU General Public License as published by
10 # the Free Software Foundation; either version 3 of the License, or
11 # (at your option) any later version.
13 # Koha is distributed in the hope that it will be useful, but
14 # WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 # GNU General Public License for more details.
18 # You should have received a copy of the GNU General Public License
19 # along with Koha; if not, see <http://www.gnu.org/licenses>.
23 #use warnings; FIXME - Bug 2505
32 use List
::MoreUtils
qw(any);
33 use base
qw(Exporter);
35 our $VERSION = 3.07.00.049;
37 ConnectSuggestionAndBiblio
42 GetSuggestionFromBiblionumber
43 GetSuggestionInfoFromBiblionumber
49 DelSuggestionsOlderThan
50 GetUnprocessedSuggestions
55 C4::Suggestions - Some useful functions for dealings with aqorders.
63 The functions in this module deal with the aqorders in OPAC and in librarian interface
65 A suggestion is done in the OPAC. It has the status "ASKED"
67 When a librarian manages the suggestion, he can set the status to "REJECTED" or "ACCEPTED".
69 When the book is ordered, the suggestion status becomes "ORDERED"
71 When a book is ordered and arrived in the library, the status becomes "AVAILABLE"
73 All aqorders of a borrower can be seen by the borrower itself.
74 Suggestions done by other borrowers can be seen when not "AVAILABLE"
78 =head2 SearchSuggestion
80 (\@array) = &SearchSuggestion($suggestionhashref_to_search)
82 searches for a suggestion
85 C<\@array> : the aqorders found. Array of hash.
86 Note the status is stored twice :
88 * as parameter ( for example ASKED => 1, or REJECTED => 1) . This is for template & translation purposes.
92 sub SearchSuggestion
{
93 my ($suggestion) = @_;
94 my $dbh = C4
::Context
->dbh;
99 U1.branchcode AS branchcodesuggestedby,
100 B1.branchname AS branchnamesuggestedby,
101 U1.surname AS surnamesuggestedby,
102 U1.firstname AS firstnamesuggestedby,
103 U1.cardnumber AS cardnumbersuggestedby,
104 U1.email AS emailsuggestedby,
105 U1.borrowernumber AS borrnumsuggestedby,
106 U1.categorycode AS categorycodesuggestedby,
107 C1.description AS categorydescriptionsuggestedby,
108 U2.surname AS surnamemanagedby,
109 U2.firstname AS firstnamemanagedby,
110 B2.branchname AS branchnamesuggestedby,
111 U2.email AS emailmanagedby,
112 U2.branchcode AS branchcodemanagedby,
113 U2.borrowernumber AS borrnummanagedby
115 LEFT JOIN borrowers AS U1 ON suggestedby=U1.borrowernumber
116 LEFT JOIN branches AS B1 ON B1.branchcode=U1.branchcode
117 LEFT JOIN categories AS C1 ON C1.categorycode=U1.categorycode
118 LEFT JOIN borrowers AS U2 ON managedby=U2.borrowernumber
119 LEFT JOIN branches AS B2 ON B2.branchcode=U2.branchcode
120 LEFT JOIN categories AS C2 ON C2.categorycode=U2.categorycode
125 # filter on biblio informations
127 qw( title author isbn publishercode copyrightdate collectiontitle ))
129 if ( $suggestion->{$field} ) {
130 push @sql_params, '%' . $suggestion->{$field} . '%';
131 push @query, qq{ AND suggestions
.$field LIKE ?
};
135 # filter on user branch
136 if ( C4
::Context
->preference('IndependentBranches') ) {
137 my $userenv = C4
::Context
->userenv;
139 if ( !C4
::Context
->IsSuperLibrarian() && !$suggestion->{branchcode
} )
141 push @sql_params, $$userenv{branch
};
143 AND (suggestions.branchcode=? OR suggestions.branchcode='')
148 if ( defined $suggestion->{branchcode
} && $suggestion->{branchcode
} ) {
149 unless ( $suggestion->{branchcode
} eq '__ANY__' ) {
150 push @sql_params, $suggestion->{branchcode
};
151 push @query, qq{ AND suggestions
.branchcode
=?
};
156 # filter on nillable fields
158 qw( STATUS itemtype suggestedby managedby acceptedby budgetid biblionumber )
161 if ( exists $suggestion->{$field}
162 and defined $suggestion->{$field}
163 and $suggestion->{$field} ne '__ANY__'
164 and $suggestion->{$field} ne q
||
166 if ( $suggestion->{$field} eq '__NONE__' ) {
167 push @query, qq{ AND
(suggestions
.$field = '' OR suggestions
.$field IS NULL
) };
170 push @sql_params, $suggestion->{$field};
171 push @query, qq{ AND suggestions
.$field = ?
};
176 # filter on date fields
177 foreach my $field (qw( suggesteddate manageddate accepteddate )) {
178 my $from = $field . "_from";
179 my $to = $field . "_to";
181 $from_dt = eval { dt_from_string
( $suggestion->{$from} ) } if ( $suggestion->{$from} );
182 my $from_sql = '0000-00-00';
183 $from_sql = output_pref
({ dt
=> $from_dt, dateformat
=> 'iso', dateonly
=> 1 })
185 $debug && warn "SQL for start date ($field): $from_sql";
186 if ( $suggestion->{$from} || $suggestion->{$to} ) {
187 push @query, qq{ AND suggestions
.$field BETWEEN ? AND ?
};
188 push @sql_params, $from_sql;
190 output_pref
({ dt
=> dt_from_string
( $suggestion->{$to} ), dateformat
=> 'iso', dateonly
=> 1 }) || output_pref
({ dt
=> dt_from_string
, dateformat
=> 'iso', dateonly
=> 1 });
194 $debug && warn "@query";
195 my $sth = $dbh->prepare("@query");
196 $sth->execute(@sql_params);
199 # add status as field
200 while ( my $data = $sth->fetchrow_hashref ) {
201 $data->{ $data->{STATUS
} } = 1;
202 push( @results, $data );
205 return ( \
@results );
210 \%sth = &GetSuggestion($suggestionid)
212 this function get the detail of the suggestion $suggestionid (input arg)
215 the result of the SQL query as a hash : $sth->fetchrow_hashref.
220 my ($suggestionid) = @_;
221 my $dbh = C4
::Context
->dbh;
227 my $sth = $dbh->prepare($query);
228 $sth->execute($suggestionid);
229 return ( $sth->fetchrow_hashref );
232 =head2 GetSuggestionFromBiblionumber
234 $ordernumber = &GetSuggestionFromBiblionumber($biblionumber)
236 Get a suggestion from it's biblionumber.
239 the id of the suggestion which is related to the biblionumber given on input args.
243 sub GetSuggestionFromBiblionumber
{
244 my ($biblionumber) = @_;
248 WHERE biblionumber=? LIMIT 1
250 my $dbh = C4
::Context
->dbh;
251 my $sth = $dbh->prepare($query);
252 $sth->execute($biblionumber);
253 my ($suggestionid) = $sth->fetchrow;
254 return $suggestionid;
257 =head2 GetSuggestionInfoFromBiblionumber
259 Get a suggestion and borrower's informations from it's biblionumber.
262 all informations (suggestion and borrower) of the suggestion which is related to the biblionumber given.
266 sub GetSuggestionInfoFromBiblionumber
{
267 my ($biblionumber) = @_;
269 SELECT suggestions.*,
270 U1.surname AS surnamesuggestedby,
271 U1.firstname AS firstnamesuggestedby,
272 U1.borrowernumber AS borrnumsuggestedby
274 LEFT JOIN borrowers AS U1 ON suggestedby=U1.borrowernumber
278 my $dbh = C4
::Context
->dbh;
279 my $sth = $dbh->prepare($query);
280 $sth->execute($biblionumber);
281 return $sth->fetchrow_hashref;
284 =head2 GetSuggestionInfo
286 Get a suggestion and borrower's informations from it's suggestionid
289 all informations (suggestion and borrower) of the suggestion which is related to the suggestionid given.
293 sub GetSuggestionInfo
{
294 my ($suggestionid) = @_;
296 SELECT suggestions.*,
297 U1.surname AS surnamesuggestedby,
298 U1.firstname AS firstnamesuggestedby,
299 U1.borrowernumber AS borrnumsuggestedby
301 LEFT JOIN borrowers AS U1 ON suggestedby=U1.borrowernumber
305 my $dbh = C4
::Context
->dbh;
306 my $sth = $dbh->prepare($query);
307 $sth->execute($suggestionid);
308 return $sth->fetchrow_hashref;
311 =head2 GetSuggestionByStatus
313 $aqorders = &GetSuggestionByStatus($status,[$branchcode])
315 Get a suggestion from it's status
318 all the suggestion with C<$status>
322 sub GetSuggestionByStatus
{
324 my $branchcode = shift;
325 my $dbh = C4
::Context
->dbh;
326 my @sql_params = ($status);
328 SELECT suggestions.*,
329 U1.surname AS surnamesuggestedby,
330 U1.firstname AS firstnamesuggestedby,
331 U1.branchcode AS branchcodesuggestedby,
332 B1.branchname AS branchnamesuggestedby,
333 U1.borrowernumber AS borrnumsuggestedby,
334 U1.categorycode AS categorycodesuggestedby,
335 C1.description AS categorydescriptionsuggestedby,
336 U2.surname AS surnamemanagedby,
337 U2.firstname AS firstnamemanagedby,
338 U2.borrowernumber AS borrnummanagedby
340 LEFT JOIN borrowers AS U1 ON suggestedby=U1.borrowernumber
341 LEFT JOIN borrowers AS U2 ON managedby=U2.borrowernumber
342 LEFT JOIN categories AS C1 ON C1.categorycode=U1.categorycode
343 LEFT JOIN branches AS B1 on B1.branchcode=U1.branchcode
348 if ( C4
::Context
->preference("IndependentBranches") || $branchcode ) {
349 my $userenv = C4
::Context
->userenv;
351 unless ( C4
::Context
->IsSuperLibrarian() ) {
352 push @sql_params, $userenv->{branch
};
353 $query .= q{ AND (U1.branchcode = ? OR U1.branchcode ='') };
357 push @sql_params, $branchcode;
358 $query .= q{ AND (U1.branchcode = ? OR U1.branchcode ='') };
362 my $sth = $dbh->prepare($query);
363 $sth->execute(@sql_params);
365 $results = $sth->fetchall_arrayref( {} );
369 =head2 CountSuggestion
371 &CountSuggestion($status)
373 Count the number of aqorders with the status given on input argument.
374 the arg status can be :
378 =item * ASKED : asked by the user, not dealed by the librarian
380 =item * ACCEPTED : accepted by the librarian, but not yet ordered
382 =item * REJECTED : rejected by the librarian (definitive status)
384 =item * ORDERED : ordered by the librarian (acquisition module)
389 the number of suggestion with this status.
393 sub CountSuggestion
{
395 my $dbh = C4
::Context
->dbh;
397 my $userenv = C4
::Context
->userenv;
398 if ( C4
::Context
->preference("IndependentBranches")
399 && !C4
::Context
->IsSuperLibrarian() )
404 LEFT JOIN borrowers ON borrowers.borrowernumber=suggestions.suggestedby
406 AND (borrowers.branchcode='' OR borrowers.branchcode=?)
408 $sth = $dbh->prepare($query);
409 $sth->execute( $status, $userenv->{branch
} );
417 $sth = $dbh->prepare($query);
418 $sth->execute($status);
420 my ($result) = $sth->fetchrow;
427 &NewSuggestion($suggestion);
429 Insert a new suggestion on database with value given on input arg.
434 my ($suggestion) = @_;
446 # Set the fields to NULL if not given.
447 $suggestion->{$field} ||= undef;
450 $suggestion->{STATUS
} = "ASKED" unless $suggestion->{STATUS
};
452 $suggestion->{suggesteddate
} = dt_from_string
unless $suggestion->{suggesteddate
};
454 my $rs = Koha
::Database
->new->schema->resultset('Suggestion');
455 return $rs->create($suggestion)->id;
460 &ModSuggestion($suggestion)
462 Modify the suggestion according to the hash passed by ref.
463 The hash HAS to contain suggestionid
464 Data not defined is not updated unless it is a note or sort1
465 Send a mail to notify the user that did the suggestion.
467 Note that there is no function to modify a suggestion.
472 my ($suggestion) = @_;
473 return unless( $suggestion and defined($suggestion->{suggestionid
}) );
485 # Set the fields to NULL if not given.
486 $suggestion->{$field} = undef
487 if exists $suggestion->{$field}
488 and ($suggestion->{$field} eq '0'
489 or $suggestion->{$field} eq '' );
492 my $rs = Koha
::Database
->new->schema->resultset('Suggestion')->find($suggestion->{suggestionid
});
493 my $status_update_table = 1;
495 $rs->update($suggestion);
497 $status_update_table = 0 if( $@
);
499 if ( $suggestion->{STATUS
} ) {
501 # fetch the entire updated suggestion so that we can populate the letter
502 my $full_suggestion = GetSuggestion
( $suggestion->{suggestionid
} );
504 my $letter = C4
::Letters
::GetPreparedLetter
(
505 module
=> 'suggestions',
506 letter_code
=> $full_suggestion->{STATUS
},
507 branchcode
=> $full_suggestion->{branchcode
},
509 'branches' => $full_suggestion->{branchcode
},
510 'borrowers' => $full_suggestion->{suggestedby
},
511 'suggestions' => $full_suggestion,
512 'biblio' => $full_suggestion->{biblionumber
},
517 C4
::Letters
::EnqueueLetter
(
520 borrowernumber
=> $full_suggestion->{suggestedby
},
521 suggestionid
=> $full_suggestion->{suggestionid
},
522 LibraryName
=> C4
::Context
->preference("LibraryName"),
523 message_transport_type
=> 'email',
525 ) or warn "can't enqueue letter $letter";
528 return $status_update_table;
531 =head2 ConnectSuggestionAndBiblio
533 &ConnectSuggestionAndBiblio($ordernumber,$biblionumber)
535 connect a suggestion to an existing biblio
539 sub ConnectSuggestionAndBiblio
{
540 my ( $suggestionid, $biblionumber ) = @_;
541 my $dbh = C4
::Context
->dbh;
547 my $sth = $dbh->prepare($query);
548 $sth->execute( $biblionumber, $suggestionid );
553 &DelSuggestion($borrowernumber,$ordernumber)
555 Delete a suggestion. A borrower can delete a suggestion only if he is its owner.
560 my ( $borrowernumber, $suggestionid, $type ) = @_;
561 my $dbh = C4
::Context
->dbh;
563 # check that the suggestion comes from the suggestor
569 my $sth = $dbh->prepare($query);
570 $sth->execute($suggestionid);
571 my ($suggestedby) = $sth->fetchrow;
572 if ( $type eq 'intranet' || $suggestedby eq $borrowernumber ) {
574 DELETE FROM suggestions
577 $sth = $dbh->prepare($queryDelete);
578 my $suggestiondeleted = $sth->execute($suggestionid);
579 return $suggestiondeleted;
583 =head2 DelSuggestionsOlderThan
584 &DelSuggestionsOlderThan($days)
586 Delete all suggestions older than TODAY-$days , that have be accepted or rejected.
590 sub DelSuggestionsOlderThan
{
593 my $dbh = C4
::Context
->dbh;
594 my $sth = $dbh->prepare(
596 DELETE FROM suggestions
597 WHERE STATUS<>'ASKED'
598 AND date < ADDDATE(NOW(), ?)
601 $sth->execute("-$days");
604 sub GetUnprocessedSuggestions
{
605 my ( $number_of_days_since_the_last_modification ) = @_;
607 $number_of_days_since_the_last_modification ||= 0;
609 my $dbh = C4
::Context
->dbh;
611 my $s = $dbh->selectall_arrayref(q
|
614 WHERE STATUS
= 'ASKED'
615 AND budgetid IS NOT NULL
616 AND CAST
(NOW
() AS DATE
) - INTERVAL ? DAY
= CAST
(suggesteddate AS DATE
)
617 |, { Slice
=> {} }, $number_of_days_since_the_last_modification );
627 Koha Development Team <http://koha-community.org/>