4 # Copyright 2000-2002 Katipo Communications
5 # copyright 2010 BibLibre
7 # This file is part of Koha.
9 # Koha is free software; you can redistribute it and/or modify it
10 # under the terms of the GNU General Public License as published by
11 # the Free Software Foundation; either version 3 of the License, or
12 # (at your option) any later version.
14 # Koha is distributed in the hope that it will be useful, but
15 # WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 # GNU General Public License for more details.
19 # You should have received a copy of the GNU General Public License
20 # along with Koha; if not, see <http://www.gnu.org/licenses>.
23 use Date
::Calc qw
/Today Date_to_Days/;
24 use Date
::Manip qw
/UnixDate/;
25 use List
::MoreUtils
qw( uniq );
26 use POSIX
qw( floor ceil );
27 use Locale
::Currency
::Format
1.28;
33 use C4
::Log
; # logaction
36 use Koha
::Account
::Lines
;
37 use Koha
::Account
::Offsets
;
40 use vars
qw(@ISA @EXPORT);
46 # subs to rename (and maybe merge some...)
55 &GetOverdueMessageTransportTypes
56 &parse_overdues_letter
64 # check that an equivalent don't exist already before moving
66 # subs to move to Circulation.pm
74 C4::Circulation::Fines - Koha module dealing with fines
82 This module contains several functions for dealing with fines for
83 overdue items. It is primarily used by the 'misc/fines2.pl' script.
89 $overdues = Getoverdues( { minimumdays => 1, maximumdays => 30 } );
91 Returns the list of all overdue books, with their itemtype.
93 C<$overdues> is a reference-to-array. Each element is a
94 reference-to-hash whose keys are the fields of the issues table in the
102 my $dbh = C4
::Context
->dbh;
104 if ( C4
::Context
->preference('item-level_itypes') ) {
106 SELECT issues.*, items.itype as itemtype, items.homebranch, items.barcode, items.itemlost, items.replacementprice
108 LEFT JOIN items USING (itemnumber)
109 WHERE date_due < NOW()
113 SELECT issues.*, biblioitems.itemtype, items.itype, items.homebranch, items.barcode, items.itemlost, replacementprice
115 LEFT JOIN items USING (itemnumber)
116 LEFT JOIN biblioitems USING (biblioitemnumber)
117 WHERE date_due < NOW()
122 if ( exists $params->{'minimumdays'} and exists $params->{'maximumdays'} ) {
123 $statement .= ' AND TO_DAYS( NOW() )-TO_DAYS( date_due ) BETWEEN ? and ? ';
124 push @bind_parameters, $params->{'minimumdays'}, $params->{'maximumdays'};
125 } elsif ( exists $params->{'minimumdays'} ) {
126 $statement .= ' AND ( TO_DAYS( NOW() )-TO_DAYS( date_due ) ) > ? ';
127 push @bind_parameters, $params->{'minimumdays'};
128 } elsif ( exists $params->{'maximumdays'} ) {
129 $statement .= ' AND ( TO_DAYS( NOW() )-TO_DAYS( date_due ) ) < ? ';
130 push @bind_parameters, $params->{'maximumdays'};
132 $statement .= 'ORDER BY borrowernumber';
133 my $sth = $dbh->prepare( $statement );
134 $sth->execute( @bind_parameters );
135 return $sth->fetchall_arrayref({});
141 ($count, $overdueitems) = checkoverdues($borrowernumber);
143 Returns a count and a list of overdueitems for a given borrowernumber
148 my $borrowernumber = shift or return;
149 my $sth = C4
::Context
->dbh->prepare(
150 "SELECT biblio.*, items.*, issues.*,
153 biblioitems.itemtype,
156 biblioitems.publicationyear,
157 biblioitems.publishercode,
158 biblioitems.volumedate,
159 biblioitems.volumedesc,
160 biblioitems.collectiontitle,
161 biblioitems.collectionissn,
162 biblioitems.collectionvolume,
163 biblioitems.editionstatement,
164 biblioitems.editionresponsibility,
172 biblioitems.cn_source,
173 biblioitems.cn_class,
175 biblioitems.cn_suffix,
177 biblioitems.totalissues
179 LEFT JOIN items ON issues.itemnumber = items.itemnumber
180 LEFT JOIN biblio ON items.biblionumber = biblio.biblionumber
181 LEFT JOIN biblioitems ON items.biblioitemnumber = biblioitems.biblioitemnumber
182 WHERE issues.borrowernumber = ?
183 AND issues.date_due < NOW()"
185 $sth->execute($borrowernumber);
186 my $results = $sth->fetchall_arrayref({});
187 return ( scalar(@
$results), $results); # returning the count and the results is silly
192 ($amount, $units_minus_grace, $chargeable_units) = &CalcFine($item,
193 $categorycode, $branch,
194 $start_dt, $end_dt );
196 Calculates the fine for a book.
198 The issuingrules table in the Koha database is a fine matrix, listing
199 the penalties for each type of patron for each type of item and each branch (e.g., the
200 standard fine for books might be $0.50, but $1.50 for DVDs, or staff
201 members might get a longer grace period between the first and second
202 reminders that a book is overdue).
205 C<$item> is an item object (hashref).
207 C<$categorycode> is the category code (string) of the patron who currently has
210 C<$branchcode> is the library (string) whose issuingrules govern this transaction.
212 C<$start_date> & C<$end_date> are DateTime objects
213 defining the date range over which to determine the fine.
215 Fines scripts should just supply the date range over which to calculate the fine.
217 C<&CalcFine> returns three values:
219 C<$amount> is the fine owed by the patron (see above).
221 C<$units_minus_grace> is the number of chargeable units minus the grace period
223 C<$chargeable_units> is the number of chargeable units (days between start and end dates, Calendar adjusted where needed,
224 minus any applicable grace period, or hours)
226 FIXME: previously attempted to return C<$message> as a text message, either "First Notice", "Second Notice",
227 or "Final Notice". But CalcFine never defined any value.
232 my ( $item, $bortype, $branchcode, $due_dt, $end_date ) = @_;
234 # Skip calculations if item is not overdue
235 return ( 0, 0, 0 ) unless (DateTime
->compare( $due_dt, $end_date ) == -1);
237 my $start_date = $due_dt->clone();
238 # get issuingrules (fines part will be used)
239 my $itemtype = $item->{itemtype
} || $item->{itype
};
240 my $issuing_rule = Koha
::CirculationRules
->get_effective_rules(
242 categorycode
=> $bortype,
243 itemtype
=> $itemtype,
244 branchcode
=> $branchcode,
249 'chargeperiod_charge_at',
252 'cap_fine_to_replacement_price',
257 $itemtype = Koha
::ItemTypes
->find($itemtype);
259 return unless $issuing_rule; # If not rule exist, there is no fine
261 my $fine_unit = $issuing_rule->{lengthunit
} || 'days';
263 my $chargeable_units = get_chargeable_units
($fine_unit, $start_date, $end_date, $branchcode);
264 my $units_minus_grace = $chargeable_units - ($issuing_rule->{firstremind
} || 0);
266 if ( $issuing_rule->{chargeperiod
} && ( $units_minus_grace > 0 ) ) {
267 my $units = C4
::Context
->preference('FinesIncludeGracePeriod') ?
$chargeable_units : $units_minus_grace;
268 my $charge_periods = $units / $issuing_rule->{chargeperiod
};
269 # If chargeperiod_charge_at = 1, we charge a fine at the start of each charge period
270 # if chargeperiod_charge_at = 0, we charge at the end of each charge period
271 $charge_periods = defined $issuing_rule->{chargeperiod_charge_at
} && $issuing_rule->{chargeperiod_charge_at
} == 1 ? ceil
($charge_periods) : floor
($charge_periods);
272 $amount = $charge_periods * $issuing_rule->{fine
};
273 } # else { # a zero (or null) chargeperiod or negative units_minus_grace value means no charge. }
275 $amount = $issuing_rule->{overduefinescap
} if $issuing_rule->{overduefinescap
} && $amount > $issuing_rule->{overduefinescap
};
277 # This must be moved to Koha::Item (see also similar code in C4::Accounts::chargelostitem
278 $item->{replacementprice
} ||= $itemtype->defaultreplacecost
280 && ( ! defined $item->{replacementprice
} || $item->{replacementprice
} == 0 )
281 && C4
::Context
->preference("useDefaultReplacementCost");
283 $amount = $item->{replacementprice
} if ( $issuing_rule->{cap_fine_to_replacement_price
} && $item->{replacementprice
} && $amount > $item->{replacementprice
} );
285 $debug and warn sprintf("CalcFine returning (%s, %s, %s)", $amount, $units_minus_grace, $chargeable_units);
286 return ($amount, $units_minus_grace, $chargeable_units);
290 =head2 get_chargeable_units
292 get_chargeable_units($unit, $start_date_ $end_date, $branchcode);
294 return integer value of units between C<$start_date> and C<$end_date>, factoring in holidays for C<$branchcode>.
296 C<$unit> is 'days' or 'hours' (default is 'days').
298 C<$start_date> and C<$end_date> are the two DateTimes to get the number of units between.
300 C<$branchcode> is the branch whose calendar to use for finding holidays.
304 sub get_chargeable_units
{
305 my ($unit, $date_due, $date_returned, $branchcode) = @_;
307 # If the due date is later than the return date
308 return 0 unless ( $date_returned > $date_due );
310 my $charge_units = 0;
312 if ($unit eq 'hours') {
313 if(C4
::Context
->preference('finesCalendar') eq 'noFinesWhenClosed') {
314 my $calendar = Koha
::Calendar
->new( branchcode
=> $branchcode );
315 $charge_duration = $calendar->hours_between( $date_due, $date_returned );
317 $charge_duration = $date_returned->delta_ms( $date_due );
319 if($charge_duration->in_units('hours') == 0 && $charge_duration->in_units('seconds') > 0){
322 return $charge_duration->in_units('hours');
325 if(C4
::Context
->preference('finesCalendar') eq 'noFinesWhenClosed') {
326 my $calendar = Koha
::Calendar
->new( branchcode
=> $branchcode );
327 $charge_duration = $calendar->days_between( $date_due, $date_returned );
329 $charge_duration = $date_returned->delta_days( $date_due );
331 return $charge_duration->in_units('days');
336 =head2 GetSpecialHolidays
338 &GetSpecialHolidays($date_dues,$itemnumber);
340 return number of special days between date of the day and date due
342 C<$date_dues> is the envisaged date of book return.
344 C<$itemnumber> is the book's item number.
348 sub GetSpecialHolidays
{
349 my ( $date_dues, $itemnumber ) = @_;
351 # calcul the today date
352 my $today = join "-", &Today
();
354 # return the holdingbranch
355 my $iteminfo = GetIssuesIteminfo
($itemnumber);
357 # use sql request to find all date between date_due and today
358 my $dbh = C4
::Context
->dbh;
360 qq|SELECT DATE_FORMAT
(concat
(year
,'-',month
,'-',day
),'%Y-%m-%d') as date
361 FROM
`special_holidays`
362 WHERE DATE_FORMAT
(concat
(year
,'-',month
,'-',day
),'%Y-%m-%d') >= ?
363 AND DATE_FORMAT
(concat
(year
,'-',month
,'-',day
),'%Y-%m-%d') <= ?
366 my @result = GetWdayFromItemnumber
($itemnumber);
370 my $sth = $dbh->prepare($query);
371 $sth->execute( $date_dues, $today, $iteminfo->{'branchcode'} )
372 ; # FIXME: just use NOW() in SQL instead of passing in $today
374 while ( my $special_date = $sth->fetchrow_hashref ) {
375 push( @result_date, $special_date );
378 my $specialdaycount = scalar(@result_date);
380 for ( my $i = 0 ; $i < scalar(@result_date) ; $i++ ) {
381 $dateinsec = UnixDate
( $result_date[$i]->{'date'}, "%o" );
382 ( undef, undef, undef, undef, undef, undef, $wday, undef, undef ) =
383 localtime($dateinsec);
384 for ( my $j = 0 ; $j < scalar(@result) ; $j++ ) {
385 if ( $wday == ( $result[$j]->{'weekday'} ) ) {
391 return $specialdaycount;
394 =head2 GetRepeatableHolidays
396 &GetRepeatableHolidays($date_dues, $itemnumber, $difference,);
398 return number of day closed between date of the day and date due
400 C<$date_dues> is the envisaged date of book return.
402 C<$itemnumber> is item number.
404 C<$difference> numbers of between day date of the day and date due
408 sub GetRepeatableHolidays
{
409 my ( $date_dues, $itemnumber, $difference ) = @_;
410 my $dateinsec = UnixDate
( $date_dues, "%o" );
411 my ( $sec, $min, $hour, $mday, $mon, $year, $wday, $yday, $isdst ) =
412 localtime($dateinsec);
413 my @result = GetWdayFromItemnumber
($itemnumber);
417 for ( my $i = 0 ; $i < scalar(@result) ; $i++ ) {
420 for ( $j = 0 ; $j < $difference ; $j++ ) {
421 if ( $result[$i]->{'weekday'} == $k ) {
422 push( @dayclosedcount, $k );
425 ( $k = 0 ) if ( $k eq 7 );
428 return scalar(@dayclosedcount);
432 =head2 GetWayFromItemnumber
434 &Getwdayfromitemnumber($itemnumber);
436 return the different week day from repeatable_holidays table
438 C<$itemnumber> is item number.
442 sub GetWdayFromItemnumber
{
443 my ($itemnumber) = @_;
444 my $iteminfo = GetIssuesIteminfo
($itemnumber);
446 my $query = qq|SELECT weekday
447 FROM repeatable_holidays
450 my $sth = C4
::Context
->dbh->prepare($query);
452 $sth->execute( $iteminfo->{'branchcode'} );
453 while ( my $weekday = $sth->fetchrow_hashref ) {
454 push( @result, $weekday );
460 =head2 GetIssuesIteminfo
462 &GetIssuesIteminfo($itemnumber);
464 return all data from issues about item
466 C<$itemnumber> is item number.
470 sub GetIssuesIteminfo
{
471 my ($itemnumber) = @_;
472 my $dbh = C4
::Context
->dbh;
473 my $query = qq|SELECT
*
477 my $sth = $dbh->prepare($query);
478 $sth->execute($itemnumber);
479 my ($issuesinfo) = $sth->fetchrow_hashref;
488 issue_id => $issue_id,
489 itemnumber => $itemnumber,
490 borrowernumber => $borrowernumber,
496 (Note: the following is mostly conjecture and guesswork.)
498 Updates the fine owed on an overdue book.
500 C<$itemnumber> is the book's item number.
502 C<$borrowernumber> is the borrower number of the patron who currently
503 has the book on loan.
505 C<$amount> is the current amount owed by the patron.
507 C<$due> is the due date formatted to the currently specified date format
509 C<&UpdateFine> looks up the amount currently owed on the given item
510 and sets it to C<$amount>, creating, if necessary, a new entry in the
511 accountlines table of the Koha database.
516 # Question: Why should the caller have to
517 # specify both the item number and the borrower number? A book can't
518 # be on loan to two different people, so the item number should be
521 # Possible Answer: You might update a fine for a damaged item, *after* it is returned.
526 my $issue_id = $params->{issue_id
};
527 my $itemnum = $params->{itemnumber
};
528 my $borrowernumber = $params->{borrowernumber
};
529 my $amount = $params->{amount
};
530 my $due = $params->{due
} // q{};
532 $debug and warn "UpdateFine({ itemnumber => $itemnum, borrowernumber => $borrowernumber, due => $due, issue_id => $issue_id})";
534 unless ( $issue_id ) {
535 carp
("No issue_id passed in!");
539 my $dbh = C4
::Context
->dbh;
540 my $overdues = Koha
::Account
::Lines
->search(
542 borrowernumber
=> $borrowernumber,
543 debit_type_code
=> 'OVERDUE'
548 my $total_amount_other = 0.00;
549 my $due_qr = qr/$due/;
550 # Cycle through the fines and
551 # - find line that relates to the requested $itemnum
552 # - accumulate fines for other items
553 # so we can update $itemnum fine taking in account fine caps
554 while (my $overdue = $overdues->next) {
555 if ( $overdue->issue_id == $issue_id && $overdue->status eq 'UNRETURNED' ) {
557 $debug and warn "Not a unique accountlines record for issue_id $issue_id";
558 #FIXME Should we still count this one in total_amount ??
561 $accountline = $overdue;
565 $total_amount_other += $overdue->amountoutstanding;
568 if ( my $maxfine = C4
::Context
->preference('MaxFine') ) {
569 my $maxIncrease = $maxfine - $total_amount_other;
570 return if $maxIncrease <= 0.00;
572 if ( ( $amount - $accountline->amount ) > $maxIncrease ) {
573 my $new_amount = $accountline->amount + $maxIncrease;
574 $debug and warn "Reducing fine for item $itemnum borrower $borrowernumber from $amount to $new_amount - MaxFine reached";
575 $amount = $new_amount;
578 elsif ( $amount > $maxIncrease ) {
579 $debug and warn "Reducing fine for item $itemnum borrower $borrowernumber from $amount to $maxIncrease - MaxFine reached";
580 $amount = $maxIncrease;
584 if ( $accountline ) {
585 if ( $accountline->amount != $amount ) {
586 $accountline->adjust(
589 type
=> 'overdue_update',
590 interface
=> C4
::Context
->interface
595 if ( $amount ) { # Don't add new fines with an amount of 0
596 my $sth4 = $dbh->prepare(
597 "SELECT title FROM biblio LEFT JOIN items ON biblio.biblionumber=items.biblionumber WHERE items.itemnumber=?"
599 $sth4->execute($itemnum);
600 my $title = $sth4->fetchrow;
601 my $desc = "$title $due";
603 my $account = Koha
::Account
->new({ patron_id
=> $borrowernumber });
604 $accountline = $account->add_debit(
607 description
=> $desc,
610 interface
=> C4
::Context
->interface,
611 library_id
=> undef, #FIXME: Should we grab the checkout or circ-control branch here perhaps?
614 issue_id
=> $issue_id,
623 $borrower = &BorType($borrowernumber);
625 Looks up a patron by borrower number.
627 C<$borrower> is a reference-to-hash whose keys are all of the fields
628 from the borrowers and categories tables of the Koha database. Thus,
629 C<$borrower> contains all information about both the borrower and
630 category they belong to.
635 my ($borrowernumber) = @_;
636 my $dbh = C4
::Context
->dbh;
637 my $sth = $dbh->prepare(
638 "SELECT * from borrowers
639 LEFT JOIN categories ON borrowers.categorycode=categories.categorycode
640 WHERE borrowernumber=?"
642 $sth->execute($borrowernumber);
643 return $sth->fetchrow_hashref;
648 $data->{'sum(amountoutstanding)'} = &GetFine($itemnum,$borrowernumber);
650 return the total of fine
652 C<$itemnum> is item number
654 C<$borrowernumber> is the borrowernumber
659 my ( $itemnum, $borrowernumber ) = @_;
660 my $dbh = C4
::Context
->dbh();
661 my $query = q
|SELECT sum
(amountoutstanding
) as fineamount FROM accountlines
662 WHERE debit_type_code
= 'OVERDUE'
663 AND amountoutstanding
> 0 AND borrowernumber
=?
|;
665 push @query_param, $borrowernumber;
666 if (defined $itemnum )
668 $query .= " AND itemnumber=?";
669 push @query_param, $itemnum;
671 my $sth = $dbh->prepare($query);
672 $sth->execute( @query_param );
673 my $fine = $sth->fetchrow_hashref();
674 if ($fine->{fineamount
}) {
675 return $fine->{fineamount
};
680 =head2 GetBranchcodesWithOverdueRules
682 my @branchcodes = C4::Overdues::GetBranchcodesWithOverdueRules()
684 returns a list of branch codes for branches with overdue rules defined.
688 sub GetBranchcodesWithOverdueRules
{
689 my $dbh = C4
::Context
->dbh;
690 my $branchcodes = $dbh->selectcol_arrayref(q
|
691 SELECT DISTINCT
(branchcode
)
693 WHERE delay1 IS NOT NULL
696 if ( $branchcodes->[0] eq '' ) {
697 # If a default rule exists, all branches should be returned
698 return map { $_->branchcode } Koha
::Libraries
->search({}, { order_by
=> 'branchname' });
700 return @
$branchcodes;
703 =head2 GetOverduesForBranch
705 Sql request for display all information for branchoverdues.pl
706 2 possibilities : with or without location .
707 display is filtered by branch
709 FIXME: This function should be renamed.
713 sub GetOverduesForBranch
{
714 my ( $branch, $location) = @_;
715 my $itype_link = (C4
::Context
->preference('item-level_itypes')) ?
" items.itype " : " biblioitems.itemtype ";
716 my $dbh = C4
::Context
->dbh;
719 borrowers.cardnumber,
720 borrowers.borrowernumber,
738 items.itemcallnumber,
741 itemtypes.description,
742 accountlines.amountoutstanding
744 LEFT JOIN issues ON issues.itemnumber = accountlines.itemnumber
745 AND issues.borrowernumber = accountlines.borrowernumber
746 LEFT JOIN borrowers ON borrowers.borrowernumber = accountlines.borrowernumber
747 LEFT JOIN items ON items.itemnumber = issues.itemnumber
748 LEFT JOIN biblio ON biblio.biblionumber = items.biblionumber
749 LEFT JOIN biblioitems ON biblioitems.biblioitemnumber = items.biblioitemnumber
750 LEFT JOIN itemtypes ON itemtypes.itemtype = $itype_link
751 LEFT JOIN branches ON branches.branchcode = issues.branchcode
752 WHERE (accountlines.amountoutstanding != '0.000000')
753 AND (accountlines.debit_type_code = 'OVERDUE' )
754 AND (accountlines.status = 'UNRETURNED' )
755 AND (issues.branchcode = ? )
756 AND (issues.date_due < NOW())
759 my $q = "$select AND items.location = ? ORDER BY borrowers.surname, borrowers.firstname";
760 return @
{ $dbh->selectall_arrayref($q, { Slice
=> {} }, $branch, $location ) };
762 my $q = "$select ORDER BY borrowers.surname, borrowers.firstname";
763 return @
{ $dbh->selectall_arrayref($q, { Slice
=> {} }, $branch ) };
767 =head2 GetOverdueMessageTransportTypes
769 my $message_transport_types = GetOverdueMessageTransportTypes( $branchcode, $categorycode, $letternumber);
771 return a arrayref with all message_transport_type for given branchcode, categorycode and letternumber(1,2 or 3)
775 sub GetOverdueMessageTransportTypes
{
776 my ( $branchcode, $categorycode, $letternumber ) = @_;
777 return unless $categorycode and $letternumber;
778 my $dbh = C4
::Context
->dbh;
779 my $sth = $dbh->prepare("
780 SELECT message_transport_type
781 FROM overduerules odr LEFT JOIN overduerules_transport_types ott USING (overduerules_id)
786 $sth->execute( $branchcode, $categorycode, $letternumber );
788 while ( my $mtt = $sth->fetchrow ) {
792 # Put 'print' in first if exists
793 # It avoid to sent a print notice with an email or sms template is no email or sms is defined
794 @mtts = uniq
( 'print', @mtts )
795 if grep { $_ eq 'print' } @mtts;
800 =head2 parse_overdues_letter
802 parses the letter template, replacing the placeholders with data
803 specific to this patron, biblio, or item for overdues
806 letter - required hashref
807 borrowernumber - required integer
808 substitute - optional hashref of other key/value pairs that should
809 be substituted in the letter content
811 returns the C<letter> hashref, with the content updated to reflect the
812 substituted keys and values.
816 sub parse_overdues_letter
{
818 foreach my $required (qw( letter_code borrowernumber )) {
819 return unless ( exists $params->{$required} && $params->{$required} );
822 my $patron = Koha
::Patrons
->find( $params->{borrowernumber
} );
824 my $substitute = $params->{'substitute'} || {};
826 my %tables = ( 'borrowers' => $params->{'borrowernumber'} );
827 if ( my $p = $params->{'branchcode'} ) {
828 $tables{'branches'} = $p;
831 my $active_currency = Koha
::Acquisition
::Currencies
->get_active;
834 $currency_format = $active_currency->currency if defined($active_currency);
837 if ( my $i = $params->{'items'} ) {
838 foreach my $item (@
$i) {
839 my $fine = GetFine
($item->{'itemnumber'}, $params->{'borrowernumber'});
840 $item->{'fine'} = currency_format
($currency_format, "$fine", FMT_SYMBOL
);
841 # if active currency isn't correct ISO code fallback to sprintf
842 $item->{'fine'} = sprintf('%.2f', $fine) unless $item->{'fine'};
845 'biblio' => $item->{'biblionumber'},
846 'biblioitems' => $item->{'biblionumber'},
848 'issues' => $item->{'itemnumber'},
853 return C4
::Letters
::GetPreparedLetter
(
854 module
=> 'circulation',
855 letter_code
=> $params->{'letter_code'},
856 branchcode
=> $params->{'branchcode'},
857 lang
=> $patron->lang,
860 overdues
=> [ map { $_->{items
}->{itemnumber
} } @item_tables ],
862 substitute
=> $substitute,
863 repeat
=> { item
=> \
@item_tables },
864 message_transport_type
=> $params->{message_transport_type
},
873 Koha Development Team <http://koha-community.org/>