- Changes to the way patron renewals are handled. Circulation page now offers 'renew...
[koha.git] / circ / circulation.pl
1 #!/usr/bin/perl
2
3 # Please use 8-character tabs for this file (indents are every 4 characters)
4
5 # written 8/5/2002 by Finlay
6 # script to execute issuing of books
7
8 # Copyright 2000-2002 Katipo Communications
9 #
10 # This file is part of Koha.
11 #
12 # Koha is free software; you can redistribute it and/or modify it under the
13 # terms of the GNU General Public License as published by the Free Software
14 # Foundation; either version 2 of the License, or (at your option) any later
15 # version.
16 #
17 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
18 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
19 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
20 #
21 # You should have received a copy of the GNU General Public License along with
22 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
23 # Suite 330, Boston, MA  02111-1307 USA
24
25 use strict;
26 use CGI;
27 use C4::Output;
28 use C4::Print;
29 use C4::Auth qw/:DEFAULT get_session/;
30 use C4::Dates qw/format_date/;
31 use C4::Branch; # GetBranches
32 use C4::Koha;   # GetPrinter
33 use C4::Circulation;
34 use C4::Members;
35 use C4::Biblio;
36 use C4::Reserves;
37 use C4::Context;
38 use CGI::Session;
39
40 use Date::Calc qw(
41   Today
42   Today_and_Now
43   Add_Delta_YM
44   Add_Delta_Days
45   Date_to_Days
46 );
47
48
49 #
50 # PARAMETERS READING
51 #
52 my $query = new CGI;
53
54 # new op dev the branch and the printer are now defined by the userenv
55 # but first we have to check if someone has tried to change them
56
57 my $branch = $query->param('branch');
58 if ($branch){
59     # update our session so the userenv is updated
60     my $dbh=C4::Context->dbh;
61     my $sessionID = $query->cookie("CGISESSID") ;
62     my $session = get_session($sessionID);
63     $session->param('branch',$branch);
64     my $branchname = GetBranchName($branch);
65     $session->param('branchname',$branchname);
66 }
67
68 my $printer = $query->param('printer');
69 if ($printer){
70     # update our session so the userenv is updated
71         my $dbh=C4::Context->dbh;
72         my $sessionID = $query->cookie("CGISESSID") ;
73         my $session = get_session($sessionID);
74         $session->param('branchprinter',$printer);
75
76 }
77
78
79 my ( $template, $loggedinuser, $cookie ) = get_template_and_user (
80     {
81         template_name   => 'circ/circulation.tmpl',
82         query           => $query,
83         type            => "intranet",
84         authnotrequired => 0,
85         flagsrequired   => { circulate => 1 },
86     }
87 );
88 my $branches = GetBranches();
89
90 my $printers = GetPrinters();
91
92 my @failedrenews = $query->param('failedrenew');
93 my @renew_failed;
94 for (@failedrenews) { $renew_failed[$_] = 1; } 
95
96 my $findborrower = $query->param('findborrower');
97 $findborrower =~ s|,| |g;
98 #$findborrower =~ s|'| |g;
99 my $borrowernumber = $query->param('borrowernumber');
100
101 $branch  = C4::Context->userenv->{'branch'};    
102 $printer = C4::Context->userenv->{'branchprinter'};
103
104
105 # If Autolocated is not activated, we show the Circulation Parameters to chage settings of librarian
106     if (C4::Context->preference("AutoLocation") ne 1)
107         {
108             $template->param(
109             ManualLocation => 1,
110             );
111         }
112
113 my $barcode        = $query->param('barcode') || '';
114 my $year           = $query->param('year');
115 my $month          = $query->param('month');
116 my $day            = $query->param('day');
117 my $stickyduedate  = $query->param('stickyduedate');
118 my $duedatespec    = $query->param('duedatespec');
119 my $issueconfirmed = $query->param('issueconfirmed');
120 my $cancelreserve  = $query->param('cancelreserve');
121 my $organisation   = $query->param('organisations');
122 my $print          = $query->param('print');
123 my $newexpiry = $query->param('dateexpiry');
124
125 #set up cookie.....
126 # my $branchcookie;
127 # my $printercookie;
128 # if ($query->param('setcookies')) {
129 #     $branchcookie = $query->cookie(-name=>'branch', -value=>"$branch", -expires=>'+1y');
130 #     $printercookie = $query->cookie(-name=>'printer', -value=>"$printer", -expires=>'+1y');
131 # }
132 #
133
134 my ($datedue,$invalidduedate);
135 if ($duedatespec) {
136         $datedue =  C4::Dates->new($duedatespec,'iso' );
137         $invalidduedate=1 unless $datedue;
138 }
139
140 #if (defined($year)) {
141 #        $duedatespec = "$year-$month-$day";
142 #} else {
143 #        ($year, $month, $day) = ($duedatespec) ? split /-/, $duedatespec : (0,0,0);
144 #}
145
146 my @datearr = localtime();
147
148 # FIXME - Could just use POSIX::strftime("%Y%m%d", localtime);
149 my $todaysdate =
150     ( 1900 + $datearr[5] )
151   . sprintf( "%0.2d", ( $datearr[4] + 1 ) )
152   . sprintf( "%0.2d", ( $datearr[3] ) );
153
154 # check and see if we should print
155 if ( $barcode eq '' && $print eq 'maybe' ) {
156     $print = 'yes';
157 }
158
159 my $inprocess = ($barcode eq '') ? '' : $query->param('inprocess');
160
161 if ( $barcode eq '' && $query->param('charges') eq 'yes' ) {
162     $template->param(
163         PAYCHARGES     => 'yes',
164         borrowernumber => $borrowernumber
165     );
166 }
167
168 if ( $print eq 'yes' && $borrowernumber ne '' ) {
169     printslip( $borrowernumber );
170     $query->param( 'borrowernumber', '' );
171     $borrowernumber = '';
172 }
173
174 #
175 # STEP 2 : FIND BORROWER
176 # if there is a list of find borrowers....
177 #
178 my $borrowerslist;
179 my $message;
180 if ($findborrower) {
181     my ( $count, $borrowers ) =
182       SearchMember($findborrower, 'cardnumber', 'web' );
183     my @borrowers = @$borrowers;
184     if ( $#borrowers == -1 ) {
185         $query->param( 'findborrower', '' );
186         $message = "'$findborrower'";
187     }
188     elsif ( $#borrowers == 0 ) {
189         $query->param( 'borrowernumber', $borrowers[0]->{'borrowernumber'} );
190         $query->param( 'barcode',           '' );
191         $borrowernumber = $borrowers[0]->{'borrowernumber'};
192     }
193     else {
194         $borrowerslist = \@borrowers;
195     }
196 }
197
198 # get the borrower information.....
199 my $borrower;
200 my @lines;
201 if ($borrowernumber) {
202     $borrower = GetMemberDetails( $borrowernumber, 0 );
203     my ( $od, $issue, $fines ) = GetMemberIssuesAndFines( $borrowernumber );
204
205     # Warningdate is the date that the warning starts appearing
206     my ( $today_year,   $today_month,   $today_day )   = Today();
207     my ( $warning_year, $warning_month, $warning_day ) = split /-/,
208       $borrower->{'dateexpiry'};
209     my ( $enrol_year, $enrol_month, $enrol_day ) = split /-/,
210       $borrower->{'dateenrolled'};
211     # Renew day is calculated by adding the enrolment period to today
212     my ( $renew_year, $renew_month, $renew_day ) =
213       Add_Delta_YM( $enrol_year, $enrol_month, $enrol_day,
214         0 , $borrower->{'enrolmentperiod'}) if ($enrol_year*$enrol_month*$enrol_day>0);
215     # if the expiry date is before today
216     if ( $warning_year*$warning_month*$warning_day==0 
217       || Date_to_Days( $today_year, $today_month, $today_day ) 
218          > Date_to_Days( $warning_year, $warning_month, $warning_day ) )
219     {
220
221         #borrowercard expired or nearly expired, warn the librarian
222         $template->param(
223             flagged       => "1",
224             warndeparture => format_date($borrower->{dateexpiry}),
225             renewaldate   => format_date("$renew_year-$renew_month-$renew_day")
226         );
227     }
228     # check for NotifyBorrowerDeparture
229         if ($warning_year*$warning_month*$warning_day==0 
230       || (C4::Context->preference('NotifyBorrowerDeparture') &&
231             Date_to_Days(Add_Delta_Days($warning_year,$warning_month,$warning_day,- C4::Context->preference('NotifyBorrowerDeparture'))) <
232             Date_to_Days( $today_year, $today_month, $today_day )) ) 
233         {
234             $template->param("warndeparture" => format_date($borrower->{dateexpiry}));
235         }
236     $template->param(
237         overduecount => $od,
238         issuecount   => $issue,
239         finetotal    => $fines
240     );
241 }
242
243 #
244 # STEP 3 : ISSUING
245 #
246 #
247
248 if ($barcode) {
249    # $barcode = cuecatbarcodedecode($barcode);
250     
251         if ($issueconfirmed) {
252         AddIssue( $borrower, $barcode, $datedue, $cancelreserve );
253         $inprocess = 1;
254     }
255     else {
256         my ( $error, $question ) =
257           CanBookBeIssued( $borrower, $barcode, $datedue , $inprocess );
258         my $noerror    = 1;
259         my $noquestion = 1;
260 #         Get the item title for more information
261         my $getmessageiteminfo  = GetBiblioFromItemNumber(undef,$barcode);
262     
263         foreach my $impossible ( keys %$error ) {
264             $template->param(
265                 $impossible => $$error{$impossible},
266                 IMPOSSIBLE  => 1
267             );
268             $noerror = 0;
269         }
270         foreach my $needsconfirmation ( keys %$question ) {
271             $template->param(
272                 $needsconfirmation => $$question{$needsconfirmation},
273                 getTitleMessageIteminfo => $getmessageiteminfo->{'title'},
274                 NEEDSCONFIRMATION  => 1
275             );
276             $noquestion = 0;
277         }
278         $template->param(
279                          itemhomebranch => $getmessageiteminfo->{'homebranch'} ,                     
280                          duedatespec => $duedatespec,
281         );
282         if ( $noerror && ( $noquestion || $issueconfirmed ) ) {
283             AddIssue( $borrower, $barcode, $datedue );
284             $inprocess = 1;
285         }
286     }
287     
288 # FIXME If the issue is confirmed, we launch another time borrdata2, now display the issue count after issue 
289         my ( $od, $issue, $fines ) = GetMemberIssuesAndFines( $borrowernumber );
290         $template->param(
291         issuecount   => $issue,
292         );
293 }
294
295 # reload the borrower info for the sake of reseting the flags.....
296 if ($borrowernumber) {
297     $borrower = GetMemberDetails( $borrowernumber, 0 );
298 }
299
300 ##################################################################################
301 # BUILD HTML
302 # show all reserves of this borrower, and the position of the reservation ....
303 if ($borrowernumber) {
304
305     # new op dev
306     # now we show the status of the borrower's reservations
307     my @borrowerreserv = GetReservesFromBorrowernumber($borrowernumber );
308     my @reservloop;
309     my @WaitingReserveLoop;
310     
311     foreach my $num_res (@borrowerreserv) {
312         my %getreserv;
313         my %getWaitingReserveInfo;
314         my $getiteminfo  = GetBiblioFromItemNumber( $num_res->{'itemnumber'} );
315         my $itemtypeinfo = getitemtypeinfo( (C4::Context->preference('item-level_itype')) ? $getiteminfo->{'itype'} : $getiteminfo->{'itemtype'} );
316         my ( $transfertwhen, $transfertfrom, $transfertto ) =
317           GetTransfers( $num_res->{'itemnumber'} );
318
319         $getreserv{waiting}       = 0;
320         $getreserv{transfered}    = 0;
321         $getreserv{nottransfered} = 0;
322
323         $getreserv{reservedate}    = format_date( $num_res->{'reservedate'} );
324         $getreserv{title}          = $getiteminfo->{'title'};
325         $getreserv{itemtype}       = $itemtypeinfo->{'description'};
326         $getreserv{author}         = $getiteminfo->{'author'};
327         $getreserv{barcodereserv}  = $getiteminfo->{'barcode'};
328         $getreserv{itemcallnumber} = $getiteminfo->{'itemcallnumber'};
329                 $getreserv{biblionumber}   = $getiteminfo->{'biblionumber'};
330
331         #         check if we have a waiting status for reservations
332         if ( $num_res->{'found'} eq 'W' ) {
333             $getreserv{color}   = 'reserved';
334             $getreserv{waiting} = 1;
335 #     genarate information displaying only waiting reserves
336         $getWaitingReserveInfo{title}        = $getiteminfo->{'title'};
337         $getWaitingReserveInfo{biblionumber}   = $getiteminfo->{'biblionumber'};
338         $getWaitingReserveInfo{itemtype}    = $itemtypeinfo->{'description'};
339         $getWaitingReserveInfo{author}        = $getiteminfo->{'author'};
340         $getWaitingReserveInfo{reservedate}    = format_date( $num_res->{'reservedate'} );
341         if ($getiteminfo->{'holdingbranch'} ne $num_res->{'branchcode'} ) {
342         $getWaitingReserveInfo{waitingat}    = GetBranchName( $num_res->{'branchcode'} );
343         }
344     
345         }
346         #         check transfers with the itemnumber foud in th reservation loop
347         if ($transfertwhen) {
348             $getreserv{color}      = 'transfered';
349             $getreserv{transfered} = 1;
350             $getreserv{datesent}   = format_date($transfertwhen);
351             $getreserv{frombranch} = GetBranchName($transfertfrom);
352         }
353
354         if ( ( $getiteminfo->{'holdingbranch'} ne $num_res->{'branchcode'} )
355             and not $transfertwhen )
356         {
357             $getreserv{nottransfered}   = 1;
358             $getreserv{nottransferedby} =
359               GetBranchName( $getiteminfo->{'holdingbranch'} );
360         }
361
362 #         if we don't have a reserv on item, we put the biblio infos and the waiting position
363         if ( $getiteminfo->{'title'} eq '' ) {
364             my $getbibinfo = GetBiblioData( $num_res->{'biblionumber'} );
365             my $getbibtype = getitemtypeinfo( $getbibinfo->{'itemtype'} );  # fixme - we should have item-level reserves here ?
366             $getreserv{color}           = 'inwait';
367             $getreserv{title}           = $getbibinfo->{'title'};
368             $getreserv{waitingposition} = $num_res->{'priority'};
369             $getreserv{nottransfered}   = 0;
370             $getreserv{itemtype}        = $getbibtype->{'description'};
371             $getreserv{author}          = $getbibinfo->{'author'};
372             $getreserv{itemcallnumber}  = '----------';
373                 $getreserv{biblionumber}    = $num_res->{'biblionumber'};
374         }
375         push( @reservloop, \%getreserv );
376
377 #         if we have a reserve waiting, initiate waitingreserveloop
378         if ($getreserv{waiting} eq 1) {
379         push (@WaitingReserveLoop, \%getWaitingReserveInfo)
380         }
381       
382     }
383
384     # return result to the template
385     $template->param( 
386         countreserv => scalar @reservloop,
387         reservloop  => \@reservloop ,
388         WaitingReserveLoop  => \@WaitingReserveLoop,
389     );
390 }
391
392 # make the issued books table.
393 my $todaysissues = '';
394 my $previssues   = '';
395 my @todaysissues;
396 my @previousissues;
397 my $allowborrow;
398 ## ADDED BY JF: new itemtype issuingrules counter stuff
399 my $issued_itemtypes_loop;
400 my $issued_itemtypes_count;
401 my $issued_itemtypes_allowed_count;    # hashref with total allowed by itemtype
402 my $issued_itemtypes_remaining;        # hashref with remaining
403 my $issued_itemtypes_flags;            #hashref that stores flags
404 my @issued_itemtypes_count_loop;
405
406 if ($borrower) {
407
408 # get each issue of the borrower & separate them in todayissues & previous issues
409     my ($countissues,$issueslist) = GetPendingIssues($borrower->{'borrowernumber'});
410
411     # split in 2 arrays for today & previous
412     foreach my $it ( @$issueslist ) {
413         my $issuedate = $it->{'issuedate'};
414         $issuedate =~ s/-//g;
415         $issuedate = substr( $issuedate, 0, 8 );
416                 ($it->{'charge'}, $it->{'itemtype_charge'}) = GetIssuingCharges(
417                                                 $it->{'itemnumber'}, $borrower->{'borrowernumber'}
418                 );
419                 $it->{'charge'} = sprintf("%.2f", $it->{'charge'});
420         ($it->{'can_renew'}, $it->{'can_renew_error'}) = CanBookBeRenewed( 
421                                                 $borrower->{'borrowernumber'},$it->{'itemnumber'}
422                 );
423                 my ($restype, $reserves) = CheckReserves($it->{'itemnumber'});
424                 ($restype) and $it->{'can_renew'} = 0;
425
426                 $it->{'dd'} = format_date($it->{'date_due'});
427         my $datedue = $it->{'date_due'};
428         $datedue =~ s/-//g;
429                 $it->{'od'} = ($datedue < $todaysdate) ? 1 : 0 ;
430         ($it->{'author'} eq '') and $it->{'author'} = ' ';
431         $it->{'renew_failed'} = $renew_failed[$it->{'itemnumber'}];
432         # ADDED BY JF: NEW ITEMTYPE COUNT DISPLAY
433         $issued_itemtypes_count->{ $it->{'itemtype'} }++;
434
435         if ( $todaysdate == $issuedate ) {
436             push @todaysissues, $it;
437         } else {
438             push @previousissues, $it;
439         }
440     }
441     @todaysissues   = sort { $b->{'timestamp'} <=> $a->{'timestamp'} } @todaysissues;
442     @previousissues = sort { $b->{'date_due' } <=> $a->{'date_due' } } @previousissues;
443     my $i = 1;
444         foreach my $book (@todaysissues) {
445         $book->{'togglecolor'} = (++$i % 2) ? 0 : 1 ;
446     }
447     $i = 1;
448         foreach my $book (@previousissues) {
449         $book->{'togglecolor'} = (++$i % 2) ? 0 : 1 ;
450     }
451 }
452
453 #### ADDED BY JF FOR COUNTS BY ITEMTYPE RULES
454 # FIXME: This should utilize all the issuingrules options rather than just the defaults
455 # and it should be moved to a module
456 my $dbh = C4::Context->dbh;
457
458 # how many of each is allowed?
459 my $issueqty_sth = $dbh->prepare( "
460 SELECT itemtypes.description AS description,issuingrules.itemtype,maxissueqty
461 FROM issuingrules
462   LEFT JOIN itemtypes ON (itemtypes.itemtype=issuingrules.itemtype)
463   WHERE categorycode=?
464 " );
465 #my @issued_itemtypes_count;  # huh?
466 $issueqty_sth->execute("*");
467
468 while ( my $data = $issueqty_sth->fetchrow_hashref() ) {
469
470     # subtract how many of each this borrower has
471     $data->{'count'} = $issued_itemtypes_count->{ $data->{'description'} };  
472     $data->{'left'}  =
473       ( $data->{'maxissueqty'} -
474           $issued_itemtypes_count->{ $data->{'description'} } );
475
476     # can't have a negative number of remaining
477     if ( $data->{'left'} < 0 ) { $data->{'left'} = "0" }
478     $data->{'flag'} = 1 unless ( $data->{'maxissueqty'} > $data->{'count'} );
479     unless ( ( $data->{'maxissueqty'} < 1 )
480         || ( $data->{'itemtype'} eq "*" )
481         || ( $data->{'itemtype'} eq "CIRC" ) )
482     {
483         push @issued_itemtypes_count_loop, $data;
484     }
485 }
486 $issued_itemtypes_loop = \@issued_itemtypes_count_loop;
487
488 #### / JF
489
490 my @values;
491 my %labels;
492 my $CGIselectborrower;
493 if ($borrowerslist) {
494     foreach (
495         sort {
496                 $a->{'surname'}
497               . $a->{'firstname'} cmp $b->{'surname'}
498               . $b->{'firstname'}
499         } @$borrowerslist
500       )
501     {
502         push @values, $_->{'borrowernumber'};
503         $labels{ $_->{'borrowernumber'} } =
504 "$_->{'surname'}, $_->{'firstname'} ... ($_->{'cardnumber'} - $_->{'categorycode'}) ...  $_->{'address'} ";
505     }
506     $CGIselectborrower = CGI::scrolling_list(
507         -name     => 'borrowernumber',
508                 -class     => 'focus',
509                 -id          => 'borrowernumber',
510         -values   => \@values,
511         -labels   => \%labels,
512         -size     => 7,
513         -tabindex => '',
514         -multiple => 0
515     );
516 }
517
518 #title
519 my $flags = $borrower->{'flags'};
520 my $flag;
521
522 foreach $flag ( sort keys %$flags ) {
523
524     $flags->{$flag}->{'message'} =~ s/\n/<br>/g;
525     if ( $flags->{$flag}->{'noissues'} ) {
526         $template->param(
527             flagged  => 1,
528             noissues => 'true',
529         );
530         if ( $flag eq 'GNA' ) {
531             $template->param( gna => 'true' );
532         }
533         if ( $flag eq 'LOST' ) {
534             $template->param( lost => 'true' );
535         }
536         if ( $flag eq 'DBARRED' ) {
537             $template->param( dbarred => 'true' );
538         }
539         if ( $flag eq 'CHARGES' ) {
540             $template->param(
541                 charges    => 'true',
542                 chargesmsg => $flags->{'CHARGES'}->{'message'}
543             );
544         }
545         if ( $flag eq 'CREDITS' ) {
546             $template->param(
547                 credits    => 'true',
548                 creditsmsg => $flags->{'CREDITS'}->{'message'}
549             );
550         }
551     }
552     else {
553         if ( $flag eq 'CHARGES' ) {
554             $template->param(
555                 charges    => 'true',
556                 flagged    => 1,
557                 chargesmsg => $flags->{'CHARGES'}->{'message'}
558             );
559         }
560         if ( $flag eq 'CREDITS' ) {
561             $template->param(
562                 credits    => 'true',
563                 creditsmsg => $flags->{'CREDITS'}->{'message'}
564             );
565         }
566         if ( $flag eq 'ODUES' ) {
567             $template->param(
568                 odues    => 'true',
569                 flagged  => 1,
570                 oduesmsg => $flags->{'ODUES'}->{'message'}
571             );
572
573             my $items = $flags->{$flag}->{'itemlist'};
574 # useless ???
575 #             {
576 #                 my @itemswaiting;
577 #                 foreach my $item (@$items) {
578 #                     my ($iteminformation) =
579 #                         getiteminformation( $item->{'itemnumber'}, 0 );
580 #                     push @itemswaiting, $iteminformation;
581 #                 }
582 #             }
583             if ( $query->param('module') ne 'returns' ) {
584                 $template->param( nonreturns => 'true' );
585             }
586         }
587         if ( $flag eq 'NOTES' ) {
588             $template->param(
589                 notes    => 'true',
590                 flagged  => 1,
591                 notesmsg => $flags->{'NOTES'}->{'message'}
592             );
593         }
594     }
595 }
596
597 my $amountold = $borrower->{flags}->{'CHARGES'}->{'message'} || 0;
598 my @temp = split( /\$/, $amountold );
599
600 my $CGIorganisations;
601 my $member_of_institution;
602 if ( C4::Context->preference("memberofinstitution") ) {
603     my $organisations = get_institutions();
604     my @orgs;
605     my %org_labels;
606     foreach my $organisation ( keys %$organisations ) {
607         push @orgs, $organisation;
608         $org_labels{$organisation} =
609           $organisations->{$organisation}->{'surname'};
610     }
611     $member_of_institution = 1;
612     $CGIorganisations      = CGI::popup_menu(
613         -id     => 'organisations',
614         -name   => 'organisations',
615         -labels => \%org_labels,
616         -values => \@orgs,
617     );
618 }
619
620 $amountold = $temp[1];
621
622 my $borrowercategory = GetBorrowercategory( $borrower->{'categorycode'} );
623 my $category_type = $borrowercategory->{'category_type'};
624 ( $template->param( adultborrower => 1 ) ) if ( $category_type eq 'A' );
625
626 $template->param(
627     issued_itemtypes_count_loop => $issued_itemtypes_loop,
628     findborrower                => $findborrower,
629     borrower                    => $borrower,
630     borrowernumber              => $borrowernumber,
631     branch                      => $branch,
632     printer                     => $printer,
633     printername                 => $printer,
634     firstname                   => $borrower->{'firstname'},
635     surname                     => $borrower->{'surname'},
636         dateexpiry => format_date($newexpiry),
637     expiry                      =>
638       $borrower->{'dateexpiry'},    #format_date($borrower->{'dateexpiry'}),
639     categorycode      => $borrower->{'categorycode'},
640     address     => $borrower->{'address'},
641     address2     => $borrower->{'address2'},
642     email      => $borrower->{'email'},
643         emailpro           => $borrower->{'emailpro'},
644     borrowernotes     => $borrower->{'borrowernotes'},
645     city              => $borrower->{'city'},
646     phone             => $borrower->{'phone'} || $borrower->{'mobile'},
647     cardnumber        => $borrower->{'cardnumber'},
648     amountold         => $amountold,
649     barcode           => $barcode,
650     stickyduedate     => $stickyduedate,
651     message           => $message,
652     CGIselectborrower => $CGIselectborrower,
653     todayissues       => \@todaysissues,
654     previssues        => \@previousissues,
655     inprocess         => $inprocess,
656     memberofinstution => $member_of_institution,
657     CGIorganisations  => $CGIorganisations,
658         circview => 1,
659         
660 );
661
662 # set return date if stickyduedate
663 if ($stickyduedate) {
664     $template->param(
665         duedatespec => $duedatespec,
666     );
667 }
668
669 #if ($branchcookie) {
670 #$cookie=[$cookie, $branchcookie, $printercookie];
671 #}
672
673 $template->param(
674                 SpecifyDueDate     => C4::Context->preference("SpecifyDueDate"),
675                 CircAutocompl => C4::Context->preference("CircAutocompl") ,
676                 DHTMLformat   => C4::Dates->DHTMLcalendar(),
677 );
678 output_html_with_http_headers $query, $cookie, $template->output;