Bugs 6634: manager_id not recorded for payments and rental charges
[koha.git] / C4 / Accounts.pm
1 package C4::Accounts;
2
3 # Copyright 2000-2002 Katipo Communications
4 #
5 # This file is part of Koha.
6 #
7 # Koha is free software; you can redistribute it and/or modify it under the
8 # terms of the GNU General Public License as published by the Free Software
9 # Foundation; either version 2 of the License, or (at your option) any later
10 # version.
11 #
12 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License along
17 # with Koha; if not, write to the Free Software Foundation, Inc.,
18 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19
20
21 use strict;
22 #use warnings; FIXME - Bug 2505
23 use C4::Context;
24 use C4::Stats;
25 use C4::Members;
26 use C4::Items;
27 use C4::Circulation qw(MarkIssueReturned);
28
29 use vars qw($VERSION @ISA @EXPORT);
30
31 BEGIN {
32         # set the version for version checking
33         $VERSION = 3.03;
34         require Exporter;
35         @ISA    = qw(Exporter);
36         @EXPORT = qw(
37                 &recordpayment &makepayment &manualinvoice
38                 &getnextacctno &reconcileaccount &getcharges &ModNote &getcredits
39                 &getrefunds &chargelostitem
40                 &ReversePayment
41         ); # removed &fixaccounts
42 }
43
44 =head1 NAME
45
46 C4::Accounts - Functions for dealing with Koha accounts
47
48 =head1 SYNOPSIS
49
50 use C4::Accounts;
51
52 =head1 DESCRIPTION
53
54 The functions in this module deal with the monetary aspect of Koha,
55 including looking up and modifying the amount of money owed by a
56 patron.
57
58 =head1 FUNCTIONS
59
60 =head2 recordpayment
61
62   &recordpayment($borrowernumber, $payment);
63
64 Record payment by a patron. C<$borrowernumber> is the patron's
65 borrower number. C<$payment> is a floating-point number, giving the
66 amount that was paid. 
67
68 Amounts owed are paid off oldest first. That is, if the patron has a
69 $1 fine from Feb. 1, another $1 fine from Mar. 1, and makes a payment
70 of $1.50, then the oldest fine will be paid off in full, and $0.50
71 will be credited to the next one.
72
73 =cut
74
75 #'
76 sub recordpayment {
77
78     #here we update the account lines
79     my ( $borrowernumber, $data ) = @_;
80     my $dbh        = C4::Context->dbh;
81     my $newamtos   = 0;
82     my $accdata    = "";
83     my $branch     = C4::Context->userenv->{'branch'};
84     my $amountleft = $data;
85
86     # begin transaction
87     my $nextaccntno = getnextacctno($borrowernumber);
88
89     # get lines with outstanding amounts to offset
90     my $sth = $dbh->prepare(
91         "SELECT * FROM accountlines
92   WHERE (borrowernumber = ?) AND (amountoutstanding<>0)
93   ORDER BY date"
94     );
95     $sth->execute($borrowernumber);
96
97     # offset transactions
98     while ( ( $accdata = $sth->fetchrow_hashref ) and ( $amountleft > 0 ) ) {
99         if ( $accdata->{'amountoutstanding'} < $amountleft ) {
100             $newamtos = 0;
101             $amountleft -= $accdata->{'amountoutstanding'};
102         }
103         else {
104             $newamtos   = $accdata->{'amountoutstanding'} - $amountleft;
105             $amountleft = 0;
106         }
107         my $thisacct = $accdata->{accountno};
108         my $usth     = $dbh->prepare(
109             "UPDATE accountlines SET amountoutstanding= ?
110      WHERE (borrowernumber = ?) AND (accountno=?)"
111         );
112         $usth->execute( $newamtos, $borrowernumber, $thisacct );
113         $usth->finish;
114 #        $usth = $dbh->prepare(
115 #            "INSERT INTO accountoffsets
116 #     (borrowernumber, accountno, offsetaccount,  offsetamount)
117 #     VALUES (?,?,?,?)"
118 #        );
119 #        $usth->execute( $borrowernumber, $accdata->{'accountno'},
120 #            $nextaccntno, $newamtos );
121         $usth->finish;
122     }
123
124     # create new line
125     my $usth = $dbh->prepare(
126         "INSERT INTO accountlines
127   (borrowernumber, accountno,date,amount,description,accounttype,amountoutstanding)
128   VALUES (?,?,now(),?,'Payment,thanks','Pay',?)"
129     );
130     $usth->execute( $borrowernumber, $nextaccntno, 0 - $data, 0 - $amountleft );
131     $usth->finish;
132     UpdateStats( $branch, 'payment', $data, '', '', '', $borrowernumber, $nextaccntno );
133     $sth->finish;
134 }
135
136 =head2 makepayment
137
138   &makepayment($borrowernumber, $acctnumber, $amount, $branchcode);
139
140 Records the fact that a patron has paid off the entire amount he or
141 she owes.
142
143 C<$borrowernumber> is the patron's borrower number. C<$acctnumber> is
144 the account that was credited. C<$amount> is the amount paid (this is
145 only used to record the payment. It is assumed to be equal to the
146 amount owed). C<$branchcode> is the code of the branch where payment
147 was made.
148
149 =cut
150
151 #'
152 # FIXME - I'm not at all sure about the above, because I don't
153 # understand what the acct* tables in the Koha database are for.
154 sub makepayment {
155
156     #here we update both the accountoffsets and the account lines
157     #updated to check, if they are paying off a lost item, we return the item
158     # from their card, and put a note on the item record
159     my ( $borrowernumber, $accountno, $amount, $user, $branch ) = @_;
160     my $dbh = C4::Context->dbh;
161     my $manager_id = 0;
162     $manager_id = C4::Context->userenv->{'number'} if C4::Context->userenv; 
163
164     # begin transaction
165     my $nextaccntno = getnextacctno($borrowernumber);
166     my $newamtos    = 0;
167     my $sth =
168       $dbh->prepare(
169         "SELECT * FROM accountlines WHERE  borrowernumber=? AND accountno=?");
170     $sth->execute( $borrowernumber, $accountno );
171     my $data = $sth->fetchrow_hashref;
172     $sth->finish;
173
174     $sth = $dbh->prepare("UPDATE accountlines
175                                 SET amountoutstanding = 0
176                               WHERE borrowernumber = ?
177                                 AND accountno = ?");
178     $sth->execute($borrowernumber, $accountno);
179
180     # create new line
181     my $payment = 0 - $amount;
182     $sth = $dbh->prepare("INSERT INTO accountlines
183                                          (borrowernumber, accountno, date, amount,itemnumber,
184                                           description, accounttype, amountoutstanding, manager_id)
185                                   VALUES (?,?,now(),?,?,?,'Pay',0,?)");
186     $sth->execute($borrowernumber, $nextaccntno, $payment, $data->{'itemnumber'},"Payment,thanks - $user", $manager_id);
187
188     # FIXME - The second argument to &UpdateStats is supposed to be the
189     # branch code.
190     # UpdateStats is now being passed $accountno too. MTJ
191     UpdateStats( $user, 'payment', $amount, '', '', '', $borrowernumber,
192         $accountno );
193     #from perldoc: for SELECT only #$sth->finish;
194
195     #check to see what accounttype
196     if ( $data->{'accounttype'} eq 'Rep' || $data->{'accounttype'} eq 'L' ) {
197         returnlost( $borrowernumber, $data->{'itemnumber'} );
198     }
199 }
200
201 =head2 getnextacctno
202
203   $nextacct = &getnextacctno($borrowernumber);
204
205 Returns the next unused account number for the patron with the given
206 borrower number.
207
208 =cut
209
210 #'
211 # FIXME - Okay, so what does the above actually _mean_?
212 sub getnextacctno ($) {
213     my ($borrowernumber) = shift or return undef;
214     my $sth = C4::Context->dbh->prepare(
215         "SELECT accountno+1 FROM accountlines
216          WHERE    (borrowernumber = ?)
217          ORDER BY accountno DESC
218                  LIMIT 1"
219     );
220     $sth->execute($borrowernumber);
221     return ($sth->fetchrow || 1);
222 }
223
224 =head2 fixaccounts (removed)
225
226   &fixaccounts($borrowernumber, $accountnumber, $amount);
227
228 #'
229 # FIXME - I don't understand what this function does.
230 sub fixaccounts {
231     my ( $borrowernumber, $accountno, $amount ) = @_;
232     my $dbh = C4::Context->dbh;
233     my $sth = $dbh->prepare(
234         "SELECT * FROM accountlines WHERE borrowernumber=?
235      AND accountno=?"
236     );
237     $sth->execute( $borrowernumber, $accountno );
238     my $data = $sth->fetchrow_hashref;
239
240     # FIXME - Error-checking
241     my $diff        = $amount - $data->{'amount'};
242     my $outstanding = $data->{'amountoutstanding'} + $diff;
243     $sth->finish;
244
245     $dbh->do(<<EOT);
246         UPDATE  accountlines
247         SET     amount = '$amount',
248                 amountoutstanding = '$outstanding'
249         WHERE   borrowernumber = $borrowernumber
250           AND   accountno = $accountno
251 EOT
252         # FIXME: exceedingly bad form.  Use prepare with placholders ("?") in query and execute args.
253 }
254
255 =cut
256
257 sub returnlost{
258     my ( $borrowernumber, $itemnum ) = @_;
259     C4::Circulation::MarkIssueReturned( $borrowernumber, $itemnum );
260     my $borrower = C4::Members::GetMember( 'borrowernumber'=>$borrowernumber );
261     my @datearr = localtime(time);
262     my $date = ( 1900 + $datearr[5] ) . "-" . ( $datearr[4] + 1 ) . "-" . $datearr[3];
263     my $bor = "$borrower->{'firstname'} $borrower->{'surname'} $borrower->{'cardnumber'}";
264     ModItem({ paidfor =>  "Paid for by $bor $date" }, undef, $itemnum);
265 }
266
267
268 sub chargelostitem{
269 # lost ==1 Lost, lost==2 longoverdue, lost==3 lost and paid for
270 # FIXME: itemlost should be set to 3 after payment is made, should be a warning to the interface that
271 # a charge has been added
272 # FIXME : if no replacement price, borrower just doesn't get charged?
273    
274     my $dbh = C4::Context->dbh();
275     my ($itemnumber) = @_;
276     my $sth=$dbh->prepare("SELECT issues.*,items.*,biblio.title 
277                            FROM issues 
278                            JOIN items USING (itemnumber) 
279                            JOIN biblio USING (biblionumber)
280                            WHERE issues.itemnumber=?");
281     $sth->execute($itemnumber);
282     my $issues=$sth->fetchrow_hashref();
283
284     # if a borrower lost the item, add a replacement cost to the their record
285     if ( $issues->{borrowernumber} ){
286
287         # first make sure the borrower hasn't already been charged for this item
288         my $sth1=$dbh->prepare("SELECT * from accountlines
289         WHERE borrowernumber=? AND itemnumber=? and accounttype='L'");
290         $sth1->execute($issues->{'borrowernumber'},$itemnumber);
291         my $existing_charge_hashref=$sth1->fetchrow_hashref();
292
293         # OK, they haven't
294         unless ($existing_charge_hashref) {
295             # This item is on issue ... add replacement cost to the borrower's record and mark it returned
296             #  Note that we add this to the account even if there's no replacement price, allowing some other
297             #  process (or person) to update it, since we don't handle any defaults for replacement prices.
298             my $accountno = getnextacctno($issues->{'borrowernumber'});
299             my $sth2=$dbh->prepare("INSERT INTO accountlines
300             (borrowernumber,accountno,date,amount,description,accounttype,amountoutstanding,itemnumber)
301             VALUES (?,?,now(),?,?,'L',?,?)");
302             $sth2->execute($issues->{'borrowernumber'},$accountno,$issues->{'replacementprice'},
303             "Lost Item $issues->{'title'} $issues->{'barcode'}",
304             $issues->{'replacementprice'},$itemnumber);
305             $sth2->finish;
306         # FIXME: Log this ?
307         }
308         #FIXME : Should probably have a way to distinguish this from an item that really was returned.
309         #warn " $issues->{'borrowernumber'}  /  $itemnumber ";
310         C4::Circulation::MarkIssueReturned($issues->{borrowernumber},$itemnumber);
311         #  Shouldn't MarkIssueReturned do this?
312         C4::Items::ModItem({ onloan => undef }, undef, $itemnumber);
313     }
314     $sth->finish;
315 }
316
317 =head2 manualinvoice
318
319   &manualinvoice($borrowernumber, $itemnumber, $description, $type,
320                  $amount, $note);
321
322 C<$borrowernumber> is the patron's borrower number.
323 C<$description> is a description of the transaction.
324 C<$type> may be one of C<CS>, C<CB>, C<CW>, C<CF>, C<CL>, C<N>, C<L>,
325 or C<REF>.
326 C<$itemnumber> is the item involved, if pertinent; otherwise, it
327 should be the empty string.
328
329 =cut
330
331 #'
332 # FIXME: In Koha 3.0 , the only account adjustment 'types' passed to this function
333 # are :  
334 #               'C' = CREDIT
335 #               'FOR' = FORGIVEN  (Formerly 'F', but 'F' is taken to mean 'FINE' elsewhere)
336 #               'N' = New Card fee
337 #               'F' = Fine
338 #               'A' = Account Management fee
339 #               'M' = Sundry
340 #               'L' = Lost Item
341 #
342
343 sub manualinvoice {
344     my ( $borrowernumber, $itemnum, $desc, $type, $amount, $note ) = @_;
345     my $manager_id = 0;
346     $manager_id = C4::Context->userenv->{'number'} if C4::Context->userenv;
347     my $dbh      = C4::Context->dbh;
348     my $notifyid = 0;
349     my $insert;
350     $itemnum =~ s/ //g;
351     my $accountno  = getnextacctno($borrowernumber);
352     my $amountleft = $amount;
353
354 #    if (   $type eq 'CS'
355 #        || $type eq 'CB'
356 #        || $type eq 'CW'
357 #        || $type eq 'CF'
358 #        || $type eq 'CL' )
359 #    {
360 #        my $amount2 = $amount * -1;    # FIXME - $amount2 = -$amount
361 #        $amountleft =
362 #          fixcredit( $borrowernumber, $amount2, $itemnum, $type, $user );
363 #    }
364     if ( $type eq 'N' ) {
365         $desc .= " New Card";
366     }
367     if ( $type eq 'F' ) {
368         $desc .= " Fine";
369     }
370     if ( $type eq 'A' ) {
371         $desc .= " Account Management fee";
372     }
373     if ( $type eq 'M' ) {
374         $desc .= " Sundry";
375     }
376
377     if ( $type eq 'L' && $desc eq '' ) {
378
379         $desc = " Lost Item";
380     }
381 #    if ( $type eq 'REF' ) {
382 #        $desc .= " Cash Refund";
383 #        $amountleft = refund( '', $borrowernumber, $amount );
384 #    }
385     if (   ( $type eq 'L' )
386         or ( $type eq 'F' )
387         or ( $type eq 'A' )
388         or ( $type eq 'N' )
389         or ( $type eq 'M' ) )
390     {
391         $notifyid = 1;
392     }
393
394     if ( $itemnum ne '' ) {
395         $desc .= " " . $itemnum;
396         my $sth = $dbh->prepare(
397             "INSERT INTO  accountlines
398                         (borrowernumber, accountno, date, amount, description, accounttype, amountoutstanding, itemnumber,notify_id, note, manager_id)
399         VALUES (?, ?, now(), ?,?, ?,?,?,?,?,?)");
400      $sth->execute($borrowernumber, $accountno, $amount, $desc, $type, $amountleft, $itemnum,$notifyid, $note, $manager_id) || return $sth->errstr;
401   } else {
402     my $sth=$dbh->prepare("INSERT INTO  accountlines
403             (borrowernumber, accountno, date, amount, description, accounttype, amountoutstanding,notify_id, note, manager_id)
404             VALUES (?, ?, now(), ?, ?, ?, ?,?,?,?)"
405         );
406         $sth->execute( $borrowernumber, $accountno, $amount, $desc, $type,
407             $amountleft, $notifyid, $note, $manager_id );
408     }
409     return 0;
410 }
411
412 =head2 fixcredit #### DEPRECATED
413
414  $amountleft = &fixcredit($borrowernumber, $data, $barcode, $type, $user);
415
416  This function is only used internally, not exported.
417
418 =cut
419
420 # This function is deprecated in 3.0
421
422 sub fixcredit {
423
424     #here we update both the accountoffsets and the account lines
425     my ( $borrowernumber, $data, $barcode, $type, $user ) = @_;
426     my $dbh        = C4::Context->dbh;
427     my $newamtos   = 0;
428     my $accdata    = "";
429     my $amountleft = $data;
430     if ( $barcode ne '' ) {
431         my $item        = GetBiblioFromItemNumber( '', $barcode );
432         my $nextaccntno = getnextacctno($borrowernumber);
433         my $query       = "SELECT * FROM accountlines WHERE (borrowernumber=?
434     AND itemnumber=? AND amountoutstanding > 0)";
435         if ( $type eq 'CL' ) {
436             $query .= " AND (accounttype = 'L' OR accounttype = 'Rep')";
437         }
438         elsif ( $type eq 'CF' ) {
439             $query .= " AND (accounttype = 'F' OR accounttype = 'FU' OR
440       accounttype='Res' OR accounttype='Rent')";
441         }
442         elsif ( $type eq 'CB' ) {
443             $query .= " and accounttype='A'";
444         }
445
446         #    print $query;
447         my $sth = $dbh->prepare($query);
448         $sth->execute( $borrowernumber, $item->{'itemnumber'} );
449         $accdata = $sth->fetchrow_hashref;
450         $sth->finish;
451         if ( $accdata->{'amountoutstanding'} < $amountleft ) {
452             $newamtos = 0;
453             $amountleft -= $accdata->{'amountoutstanding'};
454         }
455         else {
456             $newamtos   = $accdata->{'amountoutstanding'} - $amountleft;
457             $amountleft = 0;
458         }
459         my $thisacct = $accdata->{accountno};
460         my $usth     = $dbh->prepare(
461             "UPDATE accountlines SET amountoutstanding= ?
462      WHERE (borrowernumber = ?) AND (accountno=?)"
463         );
464         $usth->execute( $newamtos, $borrowernumber, $thisacct );
465         $usth->finish;
466         $usth = $dbh->prepare(
467             "INSERT INTO accountoffsets
468      (borrowernumber, accountno, offsetaccount,  offsetamount)
469      VALUES (?,?,?,?)"
470         );
471         $usth->execute( $borrowernumber, $accdata->{'accountno'},
472             $nextaccntno, $newamtos );
473         $usth->finish;
474     }
475
476     # begin transaction
477     my $nextaccntno = getnextacctno($borrowernumber);
478
479     # get lines with outstanding amounts to offset
480     my $sth = $dbh->prepare(
481         "SELECT * FROM accountlines
482   WHERE (borrowernumber = ?) AND (amountoutstanding >0)
483   ORDER BY date"
484     );
485     $sth->execute($borrowernumber);
486
487     #  print $query;
488     # offset transactions
489     while ( ( $accdata = $sth->fetchrow_hashref ) and ( $amountleft > 0 ) ) {
490         if ( $accdata->{'amountoutstanding'} < $amountleft ) {
491             $newamtos = 0;
492             $amountleft -= $accdata->{'amountoutstanding'};
493         }
494         else {
495             $newamtos   = $accdata->{'amountoutstanding'} - $amountleft;
496             $amountleft = 0;
497         }
498         my $thisacct = $accdata->{accountno};
499         my $usth     = $dbh->prepare(
500             "UPDATE accountlines SET amountoutstanding= ?
501      WHERE (borrowernumber = ?) AND (accountno=?)"
502         );
503         $usth->execute( $newamtos, $borrowernumber, $thisacct );
504         $usth->finish;
505         $usth = $dbh->prepare(
506             "INSERT INTO accountoffsets
507      (borrowernumber, accountno, offsetaccount,  offsetamount)
508      VALUE (?,?,?,?)"
509         );
510         $usth->execute( $borrowernumber, $accdata->{'accountno'},
511             $nextaccntno, $newamtos );
512         $usth->finish;
513     }
514     $sth->finish;
515     $type = "Credit " . $type;
516     UpdateStats( $user, $type, $data, $user, '', '', $borrowernumber );
517     $amountleft *= -1;
518     return ($amountleft);
519
520 }
521
522 =head2 refund
523
524 #FIXME : DEPRECATED SUB
525  This subroutine tracks payments and/or credits against fines/charges
526    using the accountoffsets table, which is not used consistently in
527    Koha's fines management, and so is not used in 3.0 
528
529 =cut 
530
531 sub refund {
532
533     #here we update both the accountoffsets and the account lines
534     my ( $borrowernumber, $data ) = @_;
535     my $dbh        = C4::Context->dbh;
536     my $newamtos   = 0;
537     my $accdata    = "";
538     my $amountleft = $data * -1;
539
540     # begin transaction
541     my $nextaccntno = getnextacctno($borrowernumber);
542
543     # get lines with outstanding amounts to offset
544     my $sth = $dbh->prepare(
545         "SELECT * FROM accountlines
546   WHERE (borrowernumber = ?) AND (amountoutstanding<0)
547   ORDER BY date"
548     );
549     $sth->execute($borrowernumber);
550
551     #  print $amountleft;
552     # offset transactions
553     while ( ( $accdata = $sth->fetchrow_hashref ) and ( $amountleft < 0 ) ) {
554         if ( $accdata->{'amountoutstanding'} > $amountleft ) {
555             $newamtos = 0;
556             $amountleft -= $accdata->{'amountoutstanding'};
557         }
558         else {
559             $newamtos   = $accdata->{'amountoutstanding'} - $amountleft;
560             $amountleft = 0;
561         }
562
563         #     print $amountleft;
564         my $thisacct = $accdata->{accountno};
565         my $usth     = $dbh->prepare(
566             "UPDATE accountlines SET amountoutstanding= ?
567      WHERE (borrowernumber = ?) AND (accountno=?)"
568         );
569         $usth->execute( $newamtos, $borrowernumber, $thisacct );
570         $usth->finish;
571         $usth = $dbh->prepare(
572             "INSERT INTO accountoffsets
573      (borrowernumber, accountno, offsetaccount,  offsetamount)
574      VALUES (?,?,?,?)"
575         );
576         $usth->execute( $borrowernumber, $accdata->{'accountno'},
577             $nextaccntno, $newamtos );
578         $usth->finish;
579     }
580     $sth->finish;
581     return ($amountleft);
582 }
583
584 sub getcharges {
585         my ( $borrowerno, $timestamp, $accountno ) = @_;
586         my $dbh        = C4::Context->dbh;
587         my $timestamp2 = $timestamp - 1;
588         my $query      = "";
589         my $sth = $dbh->prepare(
590                         "SELECT * FROM accountlines WHERE borrowernumber=? AND accountno = ?"
591           );
592         $sth->execute( $borrowerno, $accountno );
593         
594     my @results;
595     while ( my $data = $sth->fetchrow_hashref ) {
596                 push @results,$data;
597         }
598     return (@results);
599 }
600
601 sub ModNote {
602     my ( $borrowernumber, $accountno, $note ) = @_;
603     my $dbh = C4::Context->dbh;
604     my $sth = $dbh->prepare('UPDATE accountlines SET note = ? WHERE borrowernumber = ? AND accountno = ?');
605     $sth->execute( $note, $borrowernumber, $accountno );
606 }
607
608 sub getcredits {
609         my ( $date, $date2 ) = @_;
610         my $dbh = C4::Context->dbh;
611         my $sth = $dbh->prepare(
612                                 "SELECT * FROM accountlines,borrowers
613       WHERE amount < 0 AND accounttype <> 'Pay' AND accountlines.borrowernumber = borrowers.borrowernumber
614           AND timestamp >=TIMESTAMP(?) AND timestamp < TIMESTAMP(?)"
615       );  
616
617     $sth->execute( $date, $date2 );                                                                                                              
618     my @results;          
619     while ( my $data = $sth->fetchrow_hashref ) {
620                 $data->{'date'} = $data->{'timestamp'};
621                 push @results,$data;
622         }
623     return (@results);
624
625
626
627 sub getrefunds {
628         my ( $date, $date2 ) = @_;
629         my $dbh = C4::Context->dbh;
630         
631         my $sth = $dbh->prepare(
632                                 "SELECT *,timestamp AS datetime                                                                                      
633                   FROM accountlines,borrowers
634                   WHERE (accounttype = 'REF'
635                                           AND accountlines.borrowernumber = borrowers.borrowernumber
636                                                           AND date  >=?  AND date  <?)"
637     );
638
639     $sth->execute( $date, $date2 );
640
641     my @results;
642     while ( my $data = $sth->fetchrow_hashref ) {
643                 push @results,$data;
644                 
645         }
646     return (@results);
647 }
648
649 sub ReversePayment {
650   my ( $borrowernumber, $accountno ) = @_;
651   my $dbh = C4::Context->dbh;
652   
653   my $sth = $dbh->prepare('SELECT amountoutstanding FROM accountlines WHERE borrowernumber = ? AND accountno = ?');
654   $sth->execute( $borrowernumber, $accountno );
655   my $row = $sth->fetchrow_hashref();
656   my $amount_outstanding = $row->{'amountoutstanding'};
657   
658   if ( $amount_outstanding <= 0 ) {
659     $sth = $dbh->prepare('UPDATE accountlines SET amountoutstanding = amount * -1, description = CONCAT( description, " Reversed -" ) WHERE borrowernumber = ? AND accountno = ?');
660     $sth->execute( $borrowernumber, $accountno );
661   } else {
662     $sth = $dbh->prepare('UPDATE accountlines SET amountoutstanding = 0, description = CONCAT( description, " Reversed -" ) WHERE borrowernumber = ? AND accountno = ?');
663     $sth->execute( $borrowernumber, $accountno );
664   }
665 }
666
667 END { }    # module clean-up code here (global destructor)
668
669 1;
670 __END__
671
672 =head1 SEE ALSO
673
674 DBI(3)
675
676 =cut
677