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 under the
9 # terms of the GNU General Public License as published by the Free Software
10 # Foundation; either version 2 of the License, or (at your option) any later
13 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
14 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
15 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License along
18 # with Koha; if not, write to the Free Software Foundation, Inc.,
19 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
23 #use warnings; FIXME - Bug 2505
28 use C4
::Dates
qw(format_date format_date_in_iso);
29 use C4
::SQLHelper
qw(:all);
32 use List
::MoreUtils
qw(any);
33 use C4
::Dates
qw(format_date_in_iso);
34 use base
qw(Exporter);
36 our $VERSION = 3.07.00.049;
38 ConnectSuggestionAndBiblio
43 GetSuggestionFromBiblionumber
44 GetSuggestionInfoFromBiblionumber
50 DelSuggestionsOlderThan
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.email AS emailsuggestedby,
104 U1.borrowernumber AS borrnumsuggestedby,
105 U1.categorycode AS categorycodesuggestedby,
106 C1.description AS categorydescriptionsuggestedby,
107 U2.surname AS surnamemanagedby,
108 U2.firstname AS firstnamemanagedby,
109 B2.branchname AS branchnamesuggestedby,
110 U2.email AS emailmanagedby,
111 U2.branchcode AS branchcodemanagedby,
112 U2.borrowernumber AS borrnummanagedby
114 LEFT JOIN borrowers AS U1 ON suggestedby=U1.borrowernumber
115 LEFT JOIN branches AS B1 ON B1.branchcode=U1.branchcode
116 LEFT JOIN categories AS C1 ON C1.categorycode=U1.categorycode
117 LEFT JOIN borrowers AS U2 ON managedby=U2.borrowernumber
118 LEFT JOIN branches AS B2 ON B2.branchcode=U2.branchcode
119 LEFT JOIN categories AS C2 ON C2.categorycode=U2.categorycode
124 # filter on biblio informations
126 qw( title author isbn publishercode copyrightdate collectiontitle ))
128 if ( $suggestion->{$field} ) {
129 push @sql_params, '%' . $suggestion->{$field} . '%';
130 push @query, qq{ AND suggestions
.$field LIKE ?
};
134 # filter on user branch
135 if ( C4
::Context
->preference('IndependentBranches') ) {
136 my $userenv = C4
::Context
->userenv;
138 if ( !C4
::Context
->IsSuperLibrarian() && !$suggestion->{branchcode
} )
140 push @sql_params, $$userenv{branch
};
142 AND (suggestions.branchcode=? OR suggestions.branchcode='')
147 if ( defined $suggestion->{branchcode
} && $suggestion->{branchcode
} ) {
148 unless ( $suggestion->{branchcode
} eq '__ANY__' ) {
149 push @sql_params, $suggestion->{branchcode
};
150 push @query, qq{ AND suggestions
.branchcode
=?
};
155 # filter on nillable fields
157 qw( STATUS itemtype suggestedby managedby acceptedby budgetid biblionumber )
160 if ( exists $suggestion->{$field} ) {
161 if ( defined $suggestion->{$field} and $suggestion->{$field} ne '' )
163 push @sql_params, $suggestion->{$field};
164 push @query, qq{ AND suggestions
.$field=?
};
168 AND
(suggestions
.$field='' OR suggestions
.$field IS NULL
)
174 # filter on date fields
175 my $today = C4
::Dates
->today('iso');
176 foreach my $field (qw( suggesteddate manageddate accepteddate )) {
177 my $from = $field . "_from";
178 my $to = $field . "_to";
179 if ( $suggestion->{$from} || $suggestion->{$to} ) {
180 push @query, qq{ AND suggestions
.$field BETWEEN ? AND ?
};
182 format_date_in_iso
( $suggestion->{$from} ) || '0000-00-00';
184 format_date_in_iso
( $suggestion->{$to} ) || $today;
188 $debug && warn "@query";
189 my $sth = $dbh->prepare("@query");
190 $sth->execute(@sql_params);
193 # add status as field
194 while ( my $data = $sth->fetchrow_hashref ) {
195 $data->{ $data->{STATUS
} } = 1;
196 push( @results, $data );
199 return ( \
@results );
204 \%sth = &GetSuggestion($ordernumber)
206 this function get the detail of the suggestion $ordernumber (input arg)
209 the result of the SQL query as a hash : $sth->fetchrow_hashref.
214 my ($ordernumber) = @_;
215 my $dbh = C4
::Context
->dbh;
221 my $sth = $dbh->prepare($query);
222 $sth->execute($ordernumber);
223 return ( $sth->fetchrow_hashref );
226 =head2 GetSuggestionFromBiblionumber
228 $ordernumber = &GetSuggestionFromBiblionumber($biblionumber)
230 Get a suggestion from it's biblionumber.
233 the id of the suggestion which is related to the biblionumber given on input args.
237 sub GetSuggestionFromBiblionumber
{
238 my ($biblionumber) = @_;
242 WHERE biblionumber=? LIMIT 1
244 my $dbh = C4
::Context
->dbh;
245 my $sth = $dbh->prepare($query);
246 $sth->execute($biblionumber);
247 my ($suggestionid) = $sth->fetchrow;
248 return $suggestionid;
251 =head2 GetSuggestionInfoFromBiblionumber
253 Get a suggestion and borrower's informations from it's biblionumber.
256 all informations (suggestion and borrower) of the suggestion which is related to the biblionumber given.
260 sub GetSuggestionInfoFromBiblionumber
{
261 my ($biblionumber) = @_;
263 SELECT suggestions.*,
264 U1.surname AS surnamesuggestedby,
265 U1.firstname AS firstnamesuggestedby,
266 U1.borrowernumber AS borrnumsuggestedby
268 LEFT JOIN borrowers AS U1 ON suggestedby=U1.borrowernumber
272 my $dbh = C4
::Context
->dbh;
273 my $sth = $dbh->prepare($query);
274 $sth->execute($biblionumber);
275 return $sth->fetchrow_hashref;
278 =head2 GetSuggestionInfo
280 Get a suggestion and borrower's informations from it's suggestionid
283 all informations (suggestion and borrower) of the suggestion which is related to the suggestionid given.
287 sub GetSuggestionInfo
{
288 my ($suggestionid) = @_;
290 SELECT suggestions.*,
291 U1.surname AS surnamesuggestedby,
292 U1.firstname AS firstnamesuggestedby,
293 U1.borrowernumber AS borrnumsuggestedby
295 LEFT JOIN borrowers AS U1 ON suggestedby=U1.borrowernumber
299 my $dbh = C4
::Context
->dbh;
300 my $sth = $dbh->prepare($query);
301 $sth->execute($suggestionid);
302 return $sth->fetchrow_hashref;
305 =head2 GetSuggestionByStatus
307 $aqorders = &GetSuggestionByStatus($status,[$branchcode])
309 Get a suggestion from it's status
312 all the suggestion with C<$status>
316 sub GetSuggestionByStatus
{
318 my $branchcode = shift;
319 my $dbh = C4
::Context
->dbh;
320 my @sql_params = ($status);
322 SELECT suggestions.*,
323 U1.surname AS surnamesuggestedby,
324 U1.firstname AS firstnamesuggestedby,
325 U1.branchcode AS branchcodesuggestedby,
326 B1.branchname AS branchnamesuggestedby,
327 U1.borrowernumber AS borrnumsuggestedby,
328 U1.categorycode AS categorycodesuggestedby,
329 C1.description AS categorydescriptionsuggestedby,
330 U2.surname AS surnamemanagedby,
331 U2.firstname AS firstnamemanagedby,
332 U2.borrowernumber AS borrnummanagedby
334 LEFT JOIN borrowers AS U1 ON suggestedby=U1.borrowernumber
335 LEFT JOIN borrowers AS U2 ON managedby=U2.borrowernumber
336 LEFT JOIN categories AS C1 ON C1.categorycode=U1.categorycode
337 LEFT JOIN branches AS B1 on B1.branchcode=U1.branchcode
342 if ( C4
::Context
->preference("IndependentBranches") || $branchcode ) {
343 my $userenv = C4
::Context
->userenv;
345 unless ( C4
::Context
->IsSuperLibrarian() ) {
346 push @sql_params, $userenv->{branch
};
347 $query .= q{ AND (U1.branchcode = ? OR U1.branchcode ='') };
351 push @sql_params, $branchcode;
352 $query .= q{ AND (U1.branchcode = ? OR U1.branchcode ='') };
356 my $sth = $dbh->prepare($query);
357 $sth->execute(@sql_params);
359 $results = $sth->fetchall_arrayref( {} );
363 =head2 CountSuggestion
365 &CountSuggestion($status)
367 Count the number of aqorders with the status given on input argument.
368 the arg status can be :
372 =item * ASKED : asked by the user, not dealed by the librarian
374 =item * ACCEPTED : accepted by the librarian, but not yet ordered
376 =item * REJECTED : rejected by the librarian (definitive status)
378 =item * ORDERED : ordered by the librarian (acquisition module)
383 the number of suggestion with this status.
387 sub CountSuggestion
{
389 my $dbh = C4
::Context
->dbh;
391 my $userenv = C4
::Context
->userenv;
392 if ( C4
::Context
->preference("IndependentBranches")
393 && !C4
::Context
->IsSuperLibrarian() )
398 LEFT JOIN borrowers ON borrowers.borrowernumber=suggestions.suggestedby
400 AND (borrowers.branchcode='' OR borrowers.branchcode=?)
402 $sth = $dbh->prepare($query);
403 $sth->execute( $status, $userenv->{branch
} );
411 $sth = $dbh->prepare($query);
412 $sth->execute($status);
414 my ($result) = $sth->fetchrow;
421 &NewSuggestion($suggestion);
423 Insert a new suggestion on database with value given on input arg.
428 my ($suggestion) = @_;
429 $suggestion->{STATUS
} = "ASKED" unless $suggestion->{STATUS
};
430 return InsertInTable
( "suggestions", $suggestion );
435 &ModSuggestion($suggestion)
437 Modify the suggestion according to the hash passed by ref.
438 The hash HAS to contain suggestionid
439 Data not defined is not updated unless it is a note or sort1
440 Send a mail to notify the user that did the suggestion.
442 Note that there is no function to modify a suggestion.
447 my ($suggestion) = @_;
448 my $status_update_table = UpdateInTable
( "suggestions", $suggestion );
450 if ( $suggestion->{STATUS
} ) {
452 # fetch the entire updated suggestion so that we can populate the letter
453 my $full_suggestion = GetSuggestion
( $suggestion->{suggestionid
} );
455 my $letter = C4
::Letters
::GetPreparedLetter
(
456 module
=> 'suggestions',
457 letter_code
=> $full_suggestion->{STATUS
},
458 branchcode
=> $full_suggestion->{branchcode
},
460 'branches' => $full_suggestion->{branchcode
},
461 'borrowers' => $full_suggestion->{suggestedby
},
462 'suggestions' => $full_suggestion,
463 'biblio' => $full_suggestion->{biblionumber
},
468 C4
::Letters
::EnqueueLetter
(
471 borrowernumber
=> $full_suggestion->{suggestedby
},
472 suggestionid
=> $full_suggestion->{suggestionid
},
473 LibraryName
=> C4
::Context
->preference("LibraryName"),
474 message_transport_type
=> 'email',
476 ) or warn "can't enqueue letter $letter";
479 return $status_update_table;
482 =head2 ConnectSuggestionAndBiblio
484 &ConnectSuggestionAndBiblio($ordernumber,$biblionumber)
486 connect a suggestion to an existing biblio
490 sub ConnectSuggestionAndBiblio
{
491 my ( $suggestionid, $biblionumber ) = @_;
492 my $dbh = C4
::Context
->dbh;
498 my $sth = $dbh->prepare($query);
499 $sth->execute( $biblionumber, $suggestionid );
504 &DelSuggestion($borrowernumber,$ordernumber)
506 Delete a suggestion. A borrower can delete a suggestion only if he is its owner.
511 my ( $borrowernumber, $suggestionid, $type ) = @_;
512 my $dbh = C4
::Context
->dbh;
514 # check that the suggestion comes from the suggestor
520 my $sth = $dbh->prepare($query);
521 $sth->execute($suggestionid);
522 my ($suggestedby) = $sth->fetchrow;
523 if ( $type eq 'intranet' || $suggestedby eq $borrowernumber ) {
525 DELETE FROM suggestions
528 $sth = $dbh->prepare($queryDelete);
529 my $suggestiondeleted = $sth->execute($suggestionid);
530 return $suggestiondeleted;
534 =head2 DelSuggestionsOlderThan
535 &DelSuggestionsOlderThan($days)
537 Delete all suggestions older than TODAY-$days , that have be accepted or rejected.
541 sub DelSuggestionsOlderThan
{
544 my $dbh = C4
::Context
->dbh;
545 my $sth = $dbh->prepare(
547 DELETE FROM suggestions
548 WHERE STATUS<>'ASKED'
549 AND date < ADDDATE(NOW(), ?)
552 $sth->execute("-$days");
561 Koha Development Team <http://koha-community.org/>